
-
AuthorPosts
-
August 26, 2022 at 1:21 pm #1362878
Dear Enfold team,
This is the elaborate version of my question on Themeforest.
I’m very enjoy using Enfold for my own website.And now I’m tring to create a new website with Directories Pro (https://codecanyon.net/item/directories-pro-for-wordpress/21800540) and Enfold.
I ran some tests on my end and found some compatibility issue, it is very strange and kind of hard to use word to describe, and I took some screenshots:
Normal Menu on Home page:
url: http://dir81.otherfish.net/
screenshot: http://dir81.otherfish.net/wp-content/uploads/2022/08/dir-normal-page.pngChanged menu on Directory category page:
url: http://dir81.otherfish.net/directory-dirtest2/categories/restaurant/
screenshot: http://dir81.otherfish.net/wp-content/uploads/2022/08/dir-categroy-page.pngListing page:
url: http://dir81.otherfish.net/add-directory-listing/
screenshot: http://dir81.otherfish.net/wp-content/uploads/2022/08/dir-add-listing-page.pngLocation page:
url: http://dir81.otherfish.net/wp-content/uploads/2022/08/dir-location-page.png
screenshot: http://dir81.otherfish.net/directory-location/uk/london/Thanks
VincentAugust 26, 2022 at 2:18 pm #1362885Hi Vincent,
Thanks for contacting us!
I added following code to Enfold theme options > General Styling > Quick CSS field to remove house icons from menu and title bar
#top #avia-menu .drts-fas, #top .title_container .drts-fas { display: none !important; }
However, I am not really sure why menu is different on Directory, Listing and Location pages even though the menu items have the same ID. Have you tried contacting plugin authors to see if they had experienced such issue before and if so, have a solution or pointers? :)
Best regards,
YigitAugust 26, 2022 at 5:47 pm #1362901I’ve tried, they did suggest me added several lines of code into function.php but it didn’t work, I’ll chase again.
I found some more unusual behaviors:
If user hover at the category title, it does not shows the title name but shows strange code
Example page: http://dir81.otherfish.net/directory-dirtest2/categories/restaurant/
screenshot:
http://dir81.otherfish.net/wp-content/uploads/2022/08/dir-hover-category-title.pngand, the title should link to the category page it self, but it actually links to the first list of the category, in the case above: http://dir81.otherfish.net/directory-listing/329/
Also the WordPress default ‘Edit’ is not link to the category, but to the Edit of first list of the category, screenshot to explain: http://dir81.otherfish.net/wp-content/uploads/2022/08/dir-edit-button-category.png
If I switch to any other theme, it works fine, but when I using Enfold, it become conflict somehow….
Regards,
VincentAugust 30, 2022 at 4:25 am #1363136Hi,
Thank you for the update.
If user hover at the category title, it does not shows the title name but shows strange code
We are not getting that issue anymore, the title attribute of the category title is now set accordingly. This is what shows on hover.
Permanent Link: Category: Restaurant
We are not yet sure why the category title doesn’t have the correct link, so we modified the functions-enfold.php file temporarily and added this code around line 650 within the avia_title function.
if ( is_tax() || is_category() || is_tag() || is_archive() ) { global $wp_query; $term = $wp_query->get_queried_object(); $link = get_term_link( $term ); }
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.