Forum Replies Created

Viewing 30 posts - 301 through 330 (of 419 total)
  • Author
    Posts
  • in reply to: add more tabs to avia magazine enfold #590338

    Elliott. You were right. It’s working as it should. Thanks for your help.

    in reply to: Creating a mobile version of home page #590337

    Hi Rikard. Creating the “m.” subdomain I get. What I was wondering is if the content is duplicated for the mobile version–thus creating redundant content.

    in reply to: Pagination Error message with Magazine #590116

    Hi Vanay. Yeah, I’d tried that early on. No change.
    But now I just realized what the problem most likely is. The category “news” is applied to a typical blog post. The category “nepal” is applied to a custom post type post, built from Toolset Types plugin (which was recommended by you guys–which has been worked rather well).
    So, looking over the Types setting options there are 2 “Post Relationships” section: Parent Post Types (with options of: Post, Page, Media and Avia Framework), and Children Post Types (with options of: Post, Page, Media and Avia Framework). I’ve applied these in various combinations, but am not correcting the problem. Perhaps you know which options might work here?

    in reply to: Pagination Error message with Magazine #589656

    Hi Ismael,
    Yes, that took care of the pagination issue. Thanks! Will this become an issue again when I update my Enfold theme, or will this change be part of future Enfolds?

    Also, the issue of certain blog layouts working (see #581003 above) and not hasn’t changed. Please see private content for specifics.

    in reply to: resizing space between columns #586979

    Hi. Please see private content for the link.
    Below Featured Trips: The upper row is not using Equal Heights selection.The lower row is.

    • This reply was modified 9 years, 6 months ago by laptophobo.
    in reply to: Pagination Error message with Magazine #586977

    Hi Vinney,

    That new magazine.php file didn’t change anything. (I’ve returned the original one back.) Please see Private Content for FTP and WP access.

    in reply to: Error message when Debug is on. On 2 separate sites. #586083

    Thank you for the info and for following up on this diligently. We’ll call this matter settled now.

    in reply to: Error message when Debug is on. On 2 separate sites. #586054

    Doesn’t debug mode tell us that there’s a problem in the system that should be addressed?

    in reply to: Pagination Error message with Magazine #585938

    Thanks Vinay!

    in reply to: resizing space between columns #585913

    I’ve applied Ismael’s style and it works perfectly for regular 1/4 columns as per this:
    div .av_one_fourth {margin-left: 1%; width: 24%;}

    However, when I select to make “equal height columns”, the above style does not work. I’ve tried several different approaches, but no luck.

    What code might work instead?

    Thanks,

    in reply to: Pagination Error message with Magazine #584067

    Just checking in on this one too. Anything?

    in reply to: Error message when Debug is on. On 2 separate sites. #584065

    Hi Andy. Anything yet?

    in reply to: Pagination Error message with Magazine #582607

    I just made a fresh install on my local host. Brand new WP (4.4.2) and fresh download of Enfold from Themeforest. I made a page with a blog and magazine next to it (just like the website in question) and the same error message occurs. (I tested with pluggins deactivated as well.)

    So, I guess this isn’t an issue that is isolated to my site.

    in reply to: Pagination Error message with Magazine #582598

    Yes. And, I just tried it again on my local version (which has the same problem).
    You are approved to deactivate the plugins for test. (I’ve tried this myself, but with no luck).

    Thanks

    in reply to: Error message when Debug is on. On 2 separate sites. #582593

    I had not made any modifications to wp-includes/functions.php. There are a few modifications to the (child) theme’s function.php, but when I remove the file, the problem persists. I’ve swapped out the wp-includes/functions.php with a fresh Enfold version, and no change.

    Admin access has been made for both websites for you. It’s in private content.

    Thanks,

    in reply to: Pagination Error message with Magazine #581003

    Hi Elliott,

    I appreciate your helping on this. I’ve followed your suggestions above and it has not changed the results. I will explain a bit better in Private Content.

    Also, in the Blog Posts options, only the Grid Layout option will render blog posts. If I select Single Author, big preview Pic, it will display: “Sorry, no posts matched your criteria”

    When I remove the Magazine from the Page, the Pagination is fine.

    in reply to: Error message when Debug is on. On 2 separate sites. #580893

    Sure. See private content.

    in reply to: Show parent page above nested subpages in sidebar navigation #580340

    Thanks much. All looking right now.

    Thanks for the work on that Ismael. Your edit to the code has made it active, but it’s adding extra space bottom padding to it.

    Here’s the updated code in its entirety:

    /* adds the parent page in sidebar navigation */
    
    function avia_sidebar_menu($echo = true)
    {
    	$sidebar_menu = "";
    
    	$subNav = avia_get_option('page_nesting_nav');
    
    	
    	$the_id = @get_the_ID();
    	$args 	= array();
    	global $post;
    
    	if($subNav && $subNav != 'disabled' && !empty($the_id) && is_page())
    	{
    		$subNav = false;
    		$parent = $post->ID;
    		$sidebar_menu = "";
    
    		if (!empty($post->post_parent))
    		{
    			if(isset($post->ancestors)) $ancestors  = $post->ancestors;
    			if(!isset($ancestors)) $ancestors  = get_post_ancestors($post->ID);
    			$root		= count($ancestors)-1;
    			$parent 	= $ancestors[$root];
    		}
    
    		$args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order, post_title');
    
    		//enables user to change query args
    		$args = apply_filters('avia_sidebar_menu_args', $args, $post);
    
    		//hide or show child pages in menu - if the class is set to 'widget_nav_hide_child' the child pages will be hidden
    		$display_child_pages = apply_filters('avia_sidebar_menu_display_child', 'widget_nav_hide_child', $args, $post);
    
    		$children = wp_list_pages($args);
    
    		if ($children)
    		{
    			$default_sidebar = false;
    			$sidebar_menu .= "<a href='". get_the_permalink($parent) ."'>".get_the_title($parent)."</a>";
    			$sidebar_menu .= "<nav class='widget widget_nav_menu $display_child_pages'><ul class='nested_nav'>";
    			$sidebar_menu .= $children;
    			$sidebar_menu .= "</ul></nav>";
    		}
    	}
    
    	$sidebar_menu = apply_filters('avf_sidebar_menu_filter', $sidebar_menu, $args, $post);
    
    	if($echo == true) { echo $sidebar_menu; } else { return $sidebar_menu; }
    }
    

    Hi Vinay. The problem is not how to style that Parent, but to make it an active link.

    If you go to that page, you’ll see that on the left sidebar is the Parent “About Us”. When you try to click it, you’ll see that it’s not active like it’s children below. I wish to make the Parent (About Us) an active link–going to the About Us parent page.

    in reply to: Blog not showing pagination items #578223

    Sorry Ismael. I had some backwards login happening for a moment there. The new query.php file (from 4.4.2) has corrected the problem.
    Thanks again.

    in reply to: Blog Category views differ from Post to custom post type #578217

    Yes, replacing the line of code in the loop-index.php file worked. Thank you for that. And I’ll look into the “create your own archives templates” thread next.

    Thanks again for your help with this: Ismael and Basilis.

    in reply to: Blog Category views differ from Post to custom post type #576911

    When the Advance Excerpt plugin is activated, the Post (e.g.: news) works as it should, but for the Custom Posts (e.g.: nepal), I get this error message and no content: Notice: Undefined index: index in /home/karnalie/public_html/ke-2016/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps.php on line 281

    So, I’ve deactivated the plugin and went with your functions.php code. If you go to the Nepal blog, you’ll see that there’s a problem with this as well.

    As for activating the Read More tag, per your first solution, I don’t know what that means.

    Thanks again,

    • This reply was modified 9 years, 7 months ago by laptophobo.
    in reply to: Blog not showing pagination items #576866

    Hmm. Not for me. 4.4.2 is running. When I restored the query.php (in wp-includes) back to the original version (not the modified version) the problem returns. Or, should I have not touched the query.php file once 4.4.2 was installed?

    You can see for yourself.

    • This reply was modified 9 years, 7 months ago by laptophobo.

    Hi Rikard,

    I should have supplied that earlier. Here it is. (In private content.). You see that the sidebar link About Us, which is the parent, isn’t active.

    Thank you,

    in reply to: Blog not showing pagination items #576234

    Hi Elliott,

    I wasn’t able to get the pagination to work even with activation of Enfold parent theme. (I did delete that old backup version of Enfold.)

    The solution was found following your thread, leading here: https://core.trac.wordpress.org/ticket/35344#comment:34

    Hopefully in the next WP and Enfold update, this will not come back to haunt us.

    Thanks again,
    Richard

    in reply to: Blog not showing pagination items #575499

    Hi Elliott.

    The WP version is current (4.4.1). I’ve added you as a User. Please see Private Content for the access.

    in reply to: Blog Category views differ from Post to custom post type #574964

    Thanks. I’ll look for your reply. :-)

    in reply to: Blog not showing pagination items #574901

    Hi Elliott.
    I think the reason the link wasn’t working when you tried was that I was just in the middle of swapping out the previous Enfold version for a fresh version. I uploaded it manually since the previous version was also 3.4.7.

    The problem still persists. Could you please look into it again?

    Thanks much,

    I just noticed that my Categories, created in the custom post type (which uses your recommended Types plugin) are not showing up in my Menu Categories or site map. Maybe I need to edit another template-builder file before they’ll be accessible?

    Your feedback is much appreciated.

Viewing 30 posts - 301 through 330 (of 419 total)