Home › Forums › WoodMart support forum › Change Category text in Menu nav Bar
Change Category text in Menu nav Bar
- This topic has 17 replies, 2 voices, and was last updated 4 years, 8 months ago by Aizaz Imtiaz Awan.
-
AuthorPosts
-
February 26, 2020 at 11:34 pm #176452
TUMBEEParticipantHello. I was following same answer on https://xtemos.com/forums/topic/categories-on-mobile-burger-menu/#new-post but i got lost. IO have been able to change the text “Categories” in the main theme. But I am looking for ways to make the changes in the child theme to avoid overwrite when I update the theme.Please help me out
ThanksFebruary 27, 2020 at 7:11 am #176494
Aizaz Imtiaz AwanKeymasterHello,
First of all thanks for choosing our Theme, we are glad to be you in the WoodMart WordPress family
:-)
.You need to copy the file you made changes from your parent theme folder to your child theme folder to make sure that your changes aren’t lost after the theme update.
Best Regards.
February 27, 2020 at 10:08 am #176541
TUMBEEParticipantHi. Thank you for your reply. Should I copy just the template-tags.php or I should put it the a folder inc folder? Also after I do this how will I translate it to turkish?
February 27, 2020 at 11:56 am #176597
Aizaz Imtiaz AwanKeymasterHello,
You just need to copy the file in the child-theme folder.
To translate the strings you need to install and use loco translate plugin.
You watch the following video in our detailed documentation on how to translate strings using Loco Translate. https://www.youtube.com/watch?v=D3NsDdMzsls
Best Regards.
February 27, 2020 at 12:06 pm #176603
TUMBEEParticipantWell, I just dropped the template-tags.php in the woodmart-child folder it did not work Awan.
February 27, 2020 at 12:20 pm #176611
Aizaz Imtiaz AwanKeymasterHello,
Can you please send me the WP admin login details of your site and screenshot of your issue what do you want to change exactly so I will check and solve your issue.
Best Regards.
February 27, 2020 at 12:31 pm #176620
TUMBEEParticipantAttached is the sites login details.
Secondly. I would like to add the wishlist icon side by side the add to cart button if possible add an icon into the button. Please see the image attached also.Thank you for your help.
Attachments:
You must be logged in to view attached files.February 27, 2020 at 2:10 pm #176658
Aizaz Imtiaz AwanKeymasterHello,
You have not give me the admin access. That is why I am not able to access the WPML String translation and plugins and appearance section of the WP.
You can easily change these words from WPML >> String Translation.
https://wpml.org/documentation/getting-started-guide/string-translation/Also, you can change the theme default po files as well, please read here:
https://wpml.org/forums/topic/how-to-change-the-default-language-po-file-from-en-gb-to-new-en-gb/and here:
https://wpml.org/forums/topic/mo-and-po-file/Also, you can ask from the WPML support for this. There is no need to make the changes in the theme php files.
Best Regards.
February 27, 2020 at 8:57 pm #176746
TUMBEEParticipantOkay I will check it out. Thank you
February 28, 2020 at 5:31 am #176789
Aizaz Imtiaz AwanKeymasterMost Welcome!!..
Let us know if there’s anything else we can do for you! You can always reach us at any time. We are always here to help you.
Have a wonderful day.
Best Regards.
March 27, 2020 at 12:02 am #182639
TUMBEEParticipantHello. I tried copying the file from the main woodmart theme to the child theme. I mean the inc/template-tags.php file. It did still no work. Basically I want to activate the categories menu but I want to change the word to Menu2 and the main menu from Menu to Menu 1. Please check my website on the mobile to see how I want it. For me to achieve this now I had to edit the core file but I dont want a situation in the future whereby I will update woodmart then the setting goes off. Please help
March 27, 2020 at 6:58 am #182657
Aizaz Imtiaz AwanKeymasterHello,
Can you please send me the WP admin and FTP login details of your site so I will do it for you.
Best Regards.
March 28, 2020 at 11:07 pm #183044
TUMBEEParticipantHi. We found a solution to the problem and also a workaround . Your theme is awesome :).
There’s one small modification we want to make. We think this is a HTML structure not sure if css can fix it but we still shoot. For product Hover on product setting in theme settings we selected quick. We absolotely love the setting but theres one functionality draging us back. We would like to impliment the same view for mobile on desktop. i.e Product images should have just the wish-list icon on the top right-hand corner of the images the way it appears in mobile. We have disable the add to cart on mobile and left just the add to wishlist we want to implement that on desktop also.
Please help.March 30, 2020 at 6:09 am #183234
Aizaz Imtiaz AwanKeymasterHello,
We are Glad that you resolved the issue by yourself. You are Great!
Unfortunately, you could not make the same style of products for both mobile and desktop versions. Because the styles inherits from each other. It requires customization and this is beyond our limitations and support policy.
Best Regards.
March 30, 2020 at 9:50 am #183294
TUMBEEParticipantHi.Okay I think theres is a way this can be possible. Currently what I did on the desktop page is had to hide the quick view button for deskop with this css code
a.open-quick-view.quick-view-button.woodmart-tltp{
display: none;
}
Now I am left with just the add to wishlist page. What I want now is disable the hover effect and make it static then change the radius of the bix in which the wishlist icon is sitting on to be 35px. I Think that is the way to go about it. Just deactivate the hover effect and make it static. I have searched but I cant seem to disable itMarch 30, 2020 at 12:08 pm #183328
Aizaz Imtiaz AwanKeymasterHello,
To remove the on hover effect from the add to Wishlist icon you need to add the following Custom CSS in the Custom CSS for desktop area under Theme Settings >> Custom CSS.
.woodmart-tooltip-label { display: none; }
To add border-radius you need to add the following Custom CSS code.
.woodmart-buttons.wd-pos-r-t { border-radius: 35px; }
Best Regards.
March 30, 2020 at 12:11 pm #183330
TUMBEEParticipantHi. I just added the code to disable the hover but its still shows. The second code for the border radius is working fine. Please take a look at it
March 30, 2020 at 1:04 pm #183357
Aizaz Imtiaz AwanKeymasterHello,
I provided you with the CSS code to remove the on-hover Tooltip that was occurring. Unfortunately, you cannot remove the hover from it because it’s wrapped in the tag and we cannot change its behavior.
It requires customization and this is beyond our limitations and support policy.
Best Regards.
-
AuthorPosts
- You must be logged in to create new topics. Login / Register