Forum Replies Created

Viewing 15 replies - 211 through 225 (of 5,192 total)
  • Plugin Author Josh

    (@josh401)

    Hello,
    Sorry for the inconvenience.

    Let’s try resetting the plugin options (it’s on the Database tab of the plugin settings page). It seems like the option didn’t get saved properly for organizing the buttons.

    After resetting the plugin options; see if you can go back to the “Buttons” tab, and arrange the buttons.

    You’re most welcome.

    Forum: Fixing WordPress
    In reply to: Hide Hyperlink

    I’m sure it is.. but the approach kind of depends on what type of link.

    Is it in the admin side; or is it a link on the front-end of the website?

    Forum: Fixing WordPress
    In reply to: Previewing Drafts

    Hi Jennifer,

    Is this a normal post or page? Or is it a custom post type (a post type added by another plugin or theme)?

    If you look at your user profile; are you listed as an “Administrator”?

    Have you tried deactivating ALL plugins; and switching to the default 2016 theme; just to see if the issue persists?

    Hi,

    This should do it:

    add_filter( 'the_content', 'my_the_content_filter' );
    function my_the_content_filter( $content ) {
    
        // Set new content to empty string; so as to not interfere with other content areas (i.e. if is not single)
        $new_content = '';
    
        // Only run on single pages
        if ( is_single() ) {
    
            // Append Shareaholic
            $new_content .= do_shortcode ('[shareaholic app="share_buttons" id="XXXXXXXX"]');
    
            if ( class_exists( 'Jetpack_RelatedPosts' ) ) {
    
    	    // Append Jetpack Related Posts
    	    $new_content .=  do_shortcode( '[jetpack-related-posts]' );
    	}
    
            // Append PubExchange
            $new_content .= '<div id="pubexchange_below_content"></div>';
        }
    
        // Return content (plus appended values, if exists)
        return $content . $new_content;
    }

    That’s off top of my head, lemme know if it doesn’t work.

    Plugin Author Josh

    (@josh401)

    Hi,

    Yes, it’s 99% likely that your theme is styling the tables on the front-end of the website. This is a common issue in WordPress.

    You see, when a theme is written.. they also make the stylesheet that is responsible for displaying all styling on the front-end of the site.

    However, not all theme developers are aware that they can also style content in the editor… resulting in this step often being overlooked. This is why content sometimes appears differently in the editor; than it does on the front-end of the site.

    Long story short… to get your tables looking the way you want on the front-end of the site; you’ll need to style them yourself. There are a couple ways of doing this:

    1) A child theme for your normal theme.
    2) If an option exists in your theme for adding custom css; you can add it there.
    3) A custom css plugin.

    You’ll want to add the css necessary for styling tables. This often consists of “table”, “tbody”, “tr”, and “td” elements.

    That should get you started. Let me know if you get stuck, or need some more specific information.

    Forum: Reviews
    In reply to: [WP Edit] Super!
    Plugin Author Josh

    (@josh401)

    Thank you, my friend.
    Thank you very much.

    Please have a wonderful week.

    Plugin Author Josh

    (@josh401)

    Update being released today. Thanks again!

    Plugin Author Josh

    (@josh401)

    Hey Diana,
    Sorry for my delay.

    Glad you got it working properly.

    That option should have been de-selected by default. Most all options have to be enabled by the user. I did this intentionally, so the user would “hopefully” remember where a particular setting was enabled.

    But, we’ve all searched for that “rogue” setting… trust me 🙂

    Thanks for coming back to update your answer and post your solution. Much appreciated.

    Please have a wonderful week.

    Plugin Author Josh

    (@josh401)

    Hi,

    Well, it does look as if the author encoded that editor with the WP Editor function; however it also appears they have limited the buttons shown in the editor.

    Now, I agree with how that works. You want to be very careful allowing front-end (anonymous) users to use certain parts of the editor (such as uploading files, or browsing your site directories).

    So, I’m fairly certain the editor can be replaced with a customized editor using WP Edit Pro. But I’m not entirely 100% certain. The best recommendation I can make is to try it and see.

    I cannot provide any further info regarding the Pro version, in this forum. If I may be of any further assistance with that, you may use my contact form to reach me directly, or my private support forums.

    If I may be of any further assistance with WP Edit, please let me know here.

    Thank you.

    Plugin Author Josh

    (@josh401)

    Hello,

    I’m fairly certain the columns are responsive. You can tell because their width adjusts to the width of the browser window.

    However, what is happening with your contact page; is there is no break-point set to drop one below the other, only below certain browser widths.

    You can add some conditional formatting to your CSS file; which can manipulate the columns to break at certain resolutions.

    If you look at the page source, you will see each column has a class name. They are “jwl_one_third” and “jwl_two_third”.

    Using a CSS rule like:

    @media screen and (max-width: 1024px){
        .jwl_one_third {
            width: 90%;
            display: block;
        }
        .jwl_two_third {
            width: 90%;
            display: block;
        }
    }

    This will cause the columns to display at 90% width, block level elements, ONLY when the screen width is at or below 1024 pixels.

    Learn more about CSS Media Queries.

    Plugin Author Josh

    (@josh401)

    Hello, very sorry for my delay.

    The free version of WP Edit does not currently have the capability you desire. It is available in the pro version; as long as your form field uses the basic WordPress editor.

    Please let me know if I may be of any further assistance.

    Forum: Reviews
    In reply to: [WP Edit] Love It
    Plugin Author Josh

    (@josh401)

    Thank you, Mikka.

    I remember the first time I used the basic editor, and thought much the same thing. I understand the intent behind core in making an editor that beginners can use… but some of us simply need more power.

    If you ever have any suggestions for the plugin; please don’t hesitate to send them my way.

    Have a wonderful new year.

    Plugin Author Josh

    (@josh401)

    Hi, and thank you for the very kind rating and review.

    If you ever have any suggestions for the plugin, please don’t hesitate to send them my way. Some of the best plugin features come from user suggestions.

    Please have a wonderful new year.

    Plugin Author Josh

    (@josh401)

    Wow – Thank YOU, my dear. What a nice message to read.

    Some understand… some don’t… and some take the time to come by and leave a solid, well-supported rating and review; which helps the plugin tremendously.

    I’ve looked at some of your other topics.. and I can see you take the time to test a plugin as well as providing great feedback!

    So, it is I who appreciates you 🙂

Viewing 15 replies - 211 through 225 (of 5,192 total)