Home Forums WoodMart support forum Different Portfolio Page “All” Not Showing Results

Different Portfolio Page “All” Not Showing Results

Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #358488

    btokoly
    Participant

    Hello,
    I have added a new page “CUSTOM WOODWORK” and defined it as the Portfolio in the Theme Settings portfolio page dropdown. After doing so, the CUSTOM WOODWORK page will not show “ALL” under the categories.

    I have tried adding new categories, changed the categories in the projects and the problem persists.

    When I go to the “Portfolio” page from the dummy content, the “ALL” category works.

    I do not want to use the page title “Portfolio” as it does not pertain to my needs for the page.

    Please advise! Thank you in advance!
    -Braden

    Attachments:
    You must be logged in to view attached files.
    #358519

    Hello,

    Please insert the site admin access into the Private content below the message area.

    Best Regards

    #358538

    btokoly
    Participant

    See Private Content Area

    #358742

    Hello,

    I have checked the page both logged in and logged out and I see the Portfolio page works as it should: https://gyazo.com/871815ef6283e4644e517c3d80144256

    Your screen show an empty page, when you select “All”, when I view the page, I see all projects in “All” and the projects assigned to One category and projects assigned to Two categories.

    Please clarify how you expect it should work?

    Best Regard

    #358768

    btokoly
    Participant

    The problem isn’t with the “Portfolio” link. That works as it should. It’s the renamed portfolio archive link “Custom Millwork” that shows nothing under the “All” category.

    https://tokoly.com/custom-millwork/

    I expect the “All” category under the renamed portfolio archive “Custom Millwork” to show all the “projects” listed in category “1” and “2” (or any name I eventually give them).

    Best regards – Braden

    #358776

    btokoly
    Participant

    Uncashed browser screenshots: See attached:

    Attachments:
    You must be logged in to view attached files.
    #358856

    btokoly
    Participant

    UPDATE:

    I partially fixed the problem using Project URL and Category URL slugs (see attached screenshot).

    NEW PROBLEMS:
    – The page tab is still showing “Portfolio” even though the page is “Custom Millwork”
    – When on the Custom Millwork page, the navigation link “Custom Millwork” does not turn green as do the rest of the navigation links (see also attached screenshots)

    Attachments:
    You must be logged in to view attached files.
    #358860

    btokoly
    Participant

    See attached URL Slugs

    Attachments:
    You must be logged in to view attached files.
    #358864

    Hello,

    Please try to clear the cache: https://gyazo.com/897d3cb8184d55abfe8007edaf9c29e5

    Best Regars

    #358882

    btokoly
    Participant

    Cleared cache….

    Navigation link “Custom Millwork” still does not stay GREEN (highlighted) when clicked on (like with the rest of the links)

    Browser page title still says “Portfolio” even though navigation label is Custom Millwork.

    https://tokoly.com/custom-millwork/

    SEE ATTACHED

    Attachments:
    You must be logged in to view attached files.
    #358918

    Hello,

    Please set the “Default” style for the Main menu element in the Header builder: https://gyazo.com/e92c148413afbcd4193abc33912d9d14

    If you have any questions please feel free to contact us.

    Best Regards

    #358924

    btokoly
    Participant

    I set it to Default in the Header Builder. This has not solved the issues.

    https://tokoly.com/custom-millwork/

    Please advise. -Braden

    #359187

    Hello,

    Please insert the site admin access into the Private content below the message area.

    Best Regards

    #359205

    btokoly
    Participant

    Inserted below…

    #359319

    Hello,

    Please set the main menu in Appearance > Menu: https://gyazo.com/083a50805f6fd20d0daab1b8067020f8

    Please deactivate all the plugins except these ones:

    Slider Revolution
    Elementor, Elmentor Pro also should be deactivated.
    Woodmart Core
    Contact Form 7
    MailChimp for WordPress
    WooCommerce
    Safe SVG
    Switch to the parent theme

    If the problem has gone, activate the plugins one by one, checking the issue to detect which one causes the problem.

    Best Regards

    #359697

    btokoly
    Participant

    Alright….
    I went through all the pointless steps you’ve listed above and to no avail.

    It’s clear your them has a serious problem with the Portfolio and that’s likely why you don’t put Portfolio in any of the navigation menus on any of your demos.

    As I noted in previous replies, your theme basically brakes the Portfolio functions unless used exactly as your theme defines (and still doesn’t function properly in the navigation menu).

    – Doesn’t highlight when selected in the menu. (prove me wrong)
    – Doesn’t allow for the page name to be changed without causing the above mentioned problems. (prove me wrong)

    This needs to be fixed via a patch and not though clearing cache, turning off and on plugins, etc. I’ve given you admin access twice and you were unable to correct any of the issues.

    I may or may not continue to use your theme without the Portfolio. I really like you theme and hope that you do fix this problem. Until then, it would be best if you admit there is a problem and that you are in the process of fixing it.

    -Braden

    #359881

    Hello,

    Please check this code to functions.php of the child theme:

    function woodmart_nav_menu_item_classes( $menu_items ) {
    	$portfolio_page = (int) woodmart_get_opt( 'portfolio_page' );
    
    	if ( ! empty( $menu_items ) && is_array( $menu_items ) ) {
    		foreach ( $menu_items as $key => $menu_item ) {
    			$classes = (array) $menu_item->classes;
    			$menu_id = (int) $menu_item->object_id;
    
    			// Unset active class for blog page.
    			if ( woodmart_is_portfolio_archive() && $portfolio_page === $menu_id && 'page' === $menu_item->object ) {
    				// Set active state if this is the shop page link.
    				$menu_items[ $key ]->current = true;
    				$classes[]                   = 'current-menu-item';
    				$classes[]                   = 'current_page_item';
    			} elseif ( is_singular( 'portfolio' ) && $portfolio_page === $menu_id ) {
    				// Set parent state if this is a product page.
    				$classes[] = 'current_page_parent';
    			}
    
    			$menu_items[ $key ]->classes = array_unique( $classes );
    		}
    	}
    
    	return $menu_items;
    }
    
    add_filter( 'wp_nav_menu_objects', 'woodmart_nav_menu_item_classes', 2 );

    Please save Permalinks in the Dashboard > Settings > Permalinks.

    Best Regards

    #359987

    btokoly
    Participant

    This is what happened… (see attached)

    Attachments:
    You must be logged in to view attached files.
    #360490

    Hello,

    Please update your site admin access, the credentials provided earlier are no more workable.

    Best Regards

Viewing 19 posts - 1 through 19 (of 19 total)