tipadei
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Different sidebar on woocommerce shop pageI tried to create a new sidebar and assign it to the shop page with Woosidebars plugin, but the even that plugin is not powerful enough to change the sidebar shown on
So what I have done so far:
1. Added sidebar to woocommerce with the guidelines found from here.
2. Created a new sidebar in functions.php file.
3. Downloaded Woosidebars plugin and assigned both sidebars with this plugin. (Sidebar to blog, and sidebar 2 to shop)
Now still, the shop page has the sidebar of blog. What file needs to change? Something to do with the <?php get_sidebar(); ?> ? Should it be altered to fit the sidebar 2?
Forum: Themes and Templates
In reply to: [Zerif Lite] Different sidebar on woocommerce shop pageNot sure what you mean with that?
I put the registering code in my woocommerce.php file. Then what?
Forum: Plugins
In reply to: [WooCommerce] Featured image not settingI update WordPress again and it started to work
Forum: Themes and Templates
In reply to: [Zerif Lite] Featured image not uploadingI update WordPress again and it started to work
Forum: Fixing WordPress
In reply to: Not uploading featured image or new attributesI update WordPress again and it started to work
Never mind I was just missing the meta group name.
Forum: Themes and Templates
In reply to: [Zerif Lite] Featured image not uploadingHi,
Thanks for the answers!
No error messages are coming when using the console. I have deactivated all the plugins on the site once.
The problems is still there.Forum: Themes and Templates
In reply to: [Zerif Lite] Different sidebar on woocommerce shop pageHi,
I tried the plugin, and it does take away the filters on blog page but all the widgets that are meant for the blog page it shows also on the shop page. Is this because the woocommerce.php code gets the sidebar so it basically copies the blog sidebar?
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] How to set up?So is the problem with theme then when in the widget section I don’t have the shop as a page option? I have only the side bar and home page options, and the sidebar is only for the blog. So that side bar is not showing on the shop page, so I shouldn’t put it there. Should there be actually shop page separately?
Forum: Plugins
In reply to: [Polylang] Not everything is translated in zerif liteHi,
I’m not very good at coding and all this code has been taken from other people, so I’m not sure what you are even saying.
This old line is the theme’s original code:
if( !empty($zerif_aboutus_title) ): echo ‘<h2 class=”white-text”>’.__($zerif_aboutus_title,’zerif-lite’).'</h2>'; endif; ?>
The theme doesn’t have any strings available to translate in the beginning.
Then I found a thread that was telling this way to add the titles to work as strings in polylang:
First register string in functions.php folder:
// About us translation pll_register_string(‘About Us’,’zerif_aboutus_title’,’zerif-lite’);
Then go to polylang and translate the string.
Then change the old line (theme’s original) with new line:
Old line if( !empty($zerif_aboutus_title) ): echo ‘<h2 class=”white-text”>’.__($zerif_aboutus_title,’zerif-lite’).'</h2>'; endif; ?> New line if( !empty($zerif_aboutus_title) ): echo ‘<h2 class=”white-text”>’.pll__(‘zerif_aboutus_title’,’zerif-lite’).'</h2>'; endif; ?>
Now, this way worked for the all the title’s on the first page. But when it comes to certain other parts, the same method doesn’t work. For example the button, about us subtitle and text and latests news title. I’m trying exactly the same thing for them too, but it doesn’t find them as strings.
Forum: Plugins
In reply to: [Polylang] Not everything is translated in zerif liteMy page can be found from here https://goo.gl/6bAanx
Forum: Plugins
In reply to: [Polylang] Front page links take me to default languageHey,
Thanks, it worked! Otherwise it’s perfect now but would it be difficult to get also the picture hyperlinked also?
Forum: Plugins
In reply to: [Polylang] Front page links take me to default languageThe whole problem started with a problem that some things are not listed in strings. And after that I noticed that there isn’t really any way to put the links point to a second language either.
But not the problem is anyways that instead of text I would like to have a picture on top, like it was before, just so that the link would take me to a right language (like the text does now).
Forum: Plugins
In reply to: [Polylang] Front page links take me to default languageThe page is like this now https://goo.gl/muKATX
Forum: Plugins
In reply to: [Polylang] Front page links take me to default languageIt seem to work like this otherwise but now I’m not able to use the picture I have chosen in the customizer. Now it just displays the text as a link. I would like the upper text to be a picture. Also I would like the text below to work as a link. Now it’s just static text.¨
Also now if I use this same code for the other items, it changes all of them to have about me text below.