Forum Replies Created

Viewing 30 posts - 241 through 270 (of 328 total)
  • Author
    Posts
  • in reply to: Enfold – Masonry displays duplicate posts if paged #553331

    Hi there. I’ve updated to the most recent version of Enfold: Your current Theme Version Number is 3.4.6
    The masonry paging issue remains. I’ve emptied both server and browser cache and reset permissions. Still paging displays duplicate posts.

    Please provide a solution. I have 10 paid Enfold themes and a lot of pages using this setting.

    Masonry settings:
    Category (one category selected)
    Yes, display sort options
    Post number is 12
    3 Columns
    Display pagination
    Order by Date
    Descending Order
    Flexible Masonry
    Large gap
    Overlay activated
    Display Title and Excerpt
    Always Display

    Settings > General
    I’ve tried setting the number of posts to 12 and also set it to 36. No difference – paging still duplicated posts.

    • This reply was modified 8 years, 11 months ago by welswebmaster. Reason: Gave user credentials for staging site
    in reply to: Enfold – Frontend Spanish with Backend English #527364

    Yes! Backend Localization plugin https://wordpress.org/plugins/kau-boys-backend-localization/ was the best fit without any errors.

    in reply to: Enfold Accordian – alternate background color #520936

    Oh beautiful Enfold accordion alternating style :) Gracias!
    Please close this ticket.

    in reply to: Color Section & PrintFriendly & sidebar #503635

    FINAL SETTINGS USED FOR SUCCESSFUL PRINT-FRIENDLY PLUGIN & ENFOLD USAGE:
    YourSite.com/wp-admin/options-general.php?page=printfriendly
    Note: While these are the settings that worked for us – you may need to modify settings to work correctly with your Enfold configuration.

    Any icon, text size or color
    Any button position
    Display button on: Add direct to template
    Manually place [printfriendly]shortcode on page, post or custom post type, category page, or taxonomy page, archive you’d like.
    Page header: My Website icon
    Click to delete: Allow
    Images: Include
    Image style: Align Right
    Email: Allow
    PDF: Allow
    Print: Allow
    Custom css url: (blank)
    Webmaster settings
    Web site Protocol: http(common)
    Password Protected Content: No
    Use JavaScript: Yes
    Track in Google Analytics: No
    My Page Content Selected By: Content Algorithm

    in reply to: Color Section & PrintFriendly & sidebar #503627

    GREAT news! I asked the PrintFriendly plugin author your question… and he had a solution. So simple too! Here it is…

    SEP 15, 2015 | 12:47AM PDT
    Taylor Norrish replied:
    Ah! Think we have a way to solve this issue.

    – Go to your WP Admin > Settings > PrintFriendly & PDF
    – Under Webmaster Settings > My Page Content Selected
    – Select “Content Algorithm”


    Thanks to you Ismael and the Taylor (PrintFriendly) you have resolved the issue! Color section pages and any other type of page (custom post types included) work well with the PrintFriendly plugin. PDF and Print all in one. Thank YOU so very much for your awesome-ness!

    in reply to: Color Section & PrintFriendly & sidebar #502134

    <i>For future reference – FYI:</i>

    • Print-o-matic has totally ugly print output and no PDF option. While CSS is available its / element / page unless you purchase the Pro version. Take a look at example 1 below.
    • PDF-print doesn’t work at all with the Enfold theme. See example 2 below. The PDF creation button displays code rather than a PDF view output. I tried it with FF, Chrome and Safari.

    I’m not seeing other “popular” nor “maintained” plugin options.

    in reply to: Color Section & PrintFriendly & sidebar #502124

    YES, you may deactivate plugins on the site – its just a copy of production.
    The other plugins don’t offer the PDF/Print edit mode prior to outputting. We really like the printfriendly plugin process for that reason.

    • This reply was modified 9 years, 2 months ago by welswebmaster. Reason: Remove our staging site in public view
    in reply to: Color Section & PrintFriendly & sidebar #501777

    Thanks, Ismael
    I’ve submitted your question to the PrintFriendly support system. Once I get a response, I’ll post it here. You’re a patient man ;-)

    in reply to: Color Section & PrintFriendly & sidebar #500746

    Hey Ismael,

    I’ve renamed both files to “xtemplate-builder.php and xhelper-main-menu.php” and it made no difference (even after cache emptied). The UberMenu is of course messed up with those changes, but the ColorSection page as you can see STILL places the sidebar at the bottom.
    Test pages still exist as specified above.

    in reply to: Color Section & PrintFriendly & sidebar #494837

    Ismael – Thanks for your patience and willingness to work this out with me.

    Activated. The shortcode you supplied works (see Test page, post and advanced builder examples below ) but – the page with the color section page (see below) still pushes the sidebar content to the bottom . They don’t have a setting for NONE (see config image below)- the radio buttons cause it to default to the template setting. (See settings below.)

    in reply to: Color Section & PrintFriendly & sidebar #494156

    Hey!
    I did ask the plugin author. And since the issue appears only on color section pages, they pointed me to the theme author. How might we resolve the color section issue for this plugin?
    Support needed for my 8 Enfold sites please.
    Thanks!
    j

    • This reply was modified 9 years, 3 months ago by welswebmaster. Reason: typo
    in reply to: Color Section & PrintFriendly & sidebar #493578

    Hi Ismael,
    That did not work for me. To my child theme’s function.php i added the code you gave me (see below). I get blank output (not even the exposed shortcode). I entered [pf_button] in a text tab of the wysiwyg (link below). The plugin is deactivated. The settings are still set to “add code to the template” prior to deactivation. What am I misssing?

    Thanks for your response.
    j
    functions.php CODE – Lines 2-10 are those that apply.

    
    <?php
    /**
     * Shortcode for printfriendly buttons
     */
    add_shortcode('pf_button', 'get_printfriendly_button');
    function get_printfriendly_button() {
    	if( function_exists('pf_show_link') ){
    		return pf_show_link();
    	}
    }
    /**
     * Declare custom post types so that the advanced builder recognizes them.
     */
    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if ( is_singular(array('post', 'dev-daily', 'dev-military', 'dev-women', 'fic', 'ece-dev', 'worship-help', 'bible3')))
        {
            $args['title'] = get_the_title($id);
            $args['link'] = get_permalink($id);
            $args['heading'] = 'h1';
        }
        if( is_singular('faq') ){
        	$args['title'] = "Topical Q&A";
        }
        return $args;
        
    }
    /**
     * Declare custom post types so that the advanced builder recognizes them.
     */
    add_filter('avf_builder_boxes', 'add_builder_to_posttype'); //allows cpt dev-daily to use builder
    
    function add_builder_to_posttype($metabox)
    {
    	foreach($metabox as &$meta)
    	{
    		if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout')
    		{
    			$meta['page'][] = 'dev-daily'; /*your custom post type name here*/
                $meta['page'][] = 'dev-military'; /*your custom post type name here*/
                $meta['page'][] = 'dev-women'; /*your custom post type name here*/
                $meta['page'][] = 'fic'; /*your custom post type name here*/
                $meta['page'][] = 'bible3'; /*your custom post type name here*/
                $meta['page'][] = 'ece-dev'; /*your custom post type name here*/
                $meta['page'][] = 'worship-help'; /*your custom post type name here*/
    		}
    	}
    	
    
    	return $metabox;
    }
    
    /**
     * Declare custom post types so that widgets recognizes the view.
     */
    add_action('after_setup_theme','avia_load_additional_widget'); //adds latest news widget for cpt
    function avia_load_additional_widget()
    {
    	if (!class_exists('avia_customcptbox'))
    	{
    		class avia_customcptbox extends avia_newsbox
    		{
    			function avia_customcptbox()
    			{
    			$this->avia_term = 'dev-term';
    			$this->avia_post_type = 'dev-daily';
    				$this->avia_new_query = ''; //set a custom query here
    				$widget_ops = array('classname' => 'newsbox', 'description' => 'A Sidebar widget to display latest cpt entries in your sidebar' );
    
    				$this->WP_Widget( 'customcptbox', THEMENAME.' Latest Devotion', $widget_ops );
    			}
    		}
    
    		register_widget( 'avia_customcptbox' );
    	}
    }
    /**
     * function to return an undo unsbscribe string for MailPoet newsletters
     * you could place it in the functions.php of your theme
     * @return string
     */
    function mpoet_get_undo_unsubscribe(){
     if(class_exists('WYSIJA') && !empty($_REQUEST['wysija-key'])){
     
     $undo_paramsurl = array(
     'wysija-page'=>1,
     'controller'=>'confirm',
     'action'=>'undounsubscribe',
     'wysija-key'=>$_REQUEST['wysija-key']
     );
     
     $model_config = WYSIJA::get('config','model');
     $link_undo_unsubscribe = WYSIJA::get_permalink($model_config->getValue('confirmation_page'),$undo_paramsurl);
     
     $undo_unsubscribe = str_replace(
     array('[link]','[/link]'),
     array('<a href="'.$link_undo_unsubscribe.'">','</a>'),
     '<p><b>'.__('You made a mistake? [link]Undo unsubscribe[/link].',WYSIJA)).'</b><p>';
     
     return $undo_unsubscribe;
     }
     return '';
    }
     
    add_shortcode('mailpoet_undo_unsubscribe', 'mpoet_get_undo_unsubscribe');
    ?>
    
    in reply to: getting a lot of 502 errors #468931

    Kriesi,
    I have 5 Enfold themes installed all on WP Engine. As of 2 days ago – I started hitting a ton of 502 errors. We are planned to go live with our 2 sites and 24 sub sites this Friday. These errors are in the way to over a year’s worth of work. Please work directly with WP ENGINE to resolve this issue – or provide a workaround. I’m attaching my ticket (Private) below. High Priority please!

    • This reply was modified 9 years, 4 months ago by welswebmaster.

    Hey back.
    Thanks for the info, Andy. I’ll follow up with WP-Types. You may close this ticket.

    This reply has been marked as private.
    in reply to: Enfold: Using CPT wanting to show related (tag) content #435480

    Close ticket.

    Andy, that’s why I refered to the gist provided by Josue. Yes, the featured image works in other themes for my CPT. I think its because we are using the ALB with a CPT. Would you agree?
    Ref: https://kriesi.at/support/topic/enfold-using-cpt-wanting-to-show-related-tag-content/#post-434960

    • This reply was modified 9 years, 7 months ago by welswebmaster.
    in reply to: Enfold: Using CPT wanting to show related (tag) content #434942
    This reply has been marked as private.
    This reply has been marked as private.

    Here’s a hunch… I’ve found the latest update for Google Analytics by Yoast (5.4.1) to cause 2 of my 7 Enfold sites to render strangely. Once I disable GA (as you claimed with ACF) – the issue goes away. Try deactivating that plugin. At first, I thought it was WP-Retina and Yoast SEO combo. But the issue appeared again. I’m hoping that disabling GA is the one. I found another person with this same issue too here: https://yoast.com/google-analytics-5-4-notes/
    Make sure you clear server cache and logout to view the site.
    Now pile the WP 4.1.2 upgrade on this… grrrr. Hope the info helps others.

    • This reply was modified 9 years, 7 months ago by welswebmaster.
    in reply to: Enfold: Using CPT wanting to show related (tag) content #432477
    This reply has been marked as private.
    in reply to: Enfold: Automatic excerpt for CPT #428491
    This reply has been marked as private.
    in reply to: Enfold: Declaring more than one content type #426855
    This reply has been marked as private.
    in reply to: Enfold: Declaring more than one content type #426848
    This reply has been marked as private.
    This reply has been marked as private.
    This reply has been marked as private.
    This reply has been marked as private.
    This reply has been marked as private.
    This reply has been marked as private.
    This reply has been marked as private.
Viewing 30 posts - 241 through 270 (of 328 total)