Home › Forums › WoodMart support forum › Different Portfolio Page “All” Not Showing Results
Different Portfolio Page “All” Not Showing Results
- This topic has 18 replies, 2 voices, and was last updated 2 years, 11 months ago by
Elise Noromit.
-
AuthorPosts
-
March 7, 2022 at 10:18 pm #358488
btokolyParticipantHello,
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!
-BradenAttachments:
You must be logged in to view attached files.March 8, 2022 at 12:32 am #358519
Elise NoromitMemberHello,
Please insert the site admin access into the Private content below the message area.
Best Regards
March 8, 2022 at 2:22 am #358538
btokolyParticipantSee Private Content Area
March 8, 2022 at 1:10 pm #358742
Elise NoromitMemberHello,
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
March 8, 2022 at 2:05 pm #358768
btokolyParticipantThe 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
March 8, 2022 at 2:10 pm #358776
btokolyParticipantUncashed browser screenshots: See attached:
Attachments:
You must be logged in to view attached files.March 8, 2022 at 7:10 pm #358856
btokolyParticipantUPDATE:
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.March 8, 2022 at 7:13 pm #358860March 8, 2022 at 8:39 pm #358864
Elise NoromitMemberHello,
Please try to clear the cache: https://gyazo.com/897d3cb8184d55abfe8007edaf9c29e5
Best Regars
March 8, 2022 at 10:35 pm #358882
btokolyParticipantCleared 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.March 9, 2022 at 2:11 am #358918
Elise NoromitMemberHello,
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
March 9, 2022 at 2:23 am #358924
btokolyParticipantI set it to Default in the Header Builder. This has not solved the issues.
https://tokoly.com/custom-millwork/
Please advise. -Braden
March 9, 2022 at 1:18 pm #359187
Elise NoromitMemberHello,
Please insert the site admin access into the Private content below the message area.
Best Regards
March 9, 2022 at 1:58 pm #359205
btokolyParticipantInserted below…
March 9, 2022 at 11:49 pm #359319
Elise NoromitMemberHello,
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 themeIf the problem has gone, activate the plugins one by one, checking the issue to detect which one causes the problem.
Best Regards
March 10, 2022 at 4:28 pm #359697
btokolyParticipantAlright….
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
March 11, 2022 at 11:17 am #359881
Elise NoromitMemberHello,
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
March 11, 2022 at 3:44 pm #359987
btokolyParticipantThis is what happened… (see attached)
Attachments:
You must be logged in to view attached files.March 14, 2022 at 9:28 am #360490
Elise NoromitMemberHello,
Please update your site admin access, the credentials provided earlier are no more workable.
Best Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register