zannoni
Forum Replies Created
-
Thank you!
Forum: Plugins
In reply to: [The Events Calendar] Mobile problem in month viewHow you manage to solve it?
Of course. Every help is welcome.
Yes. The problem is that it displays the meta tags of the Visual Composer and then the text of the post. So I have two options: Or I delete the meta tags of the VC or I put a custom text (always the same).
Example:
[vc_row][vc_column][vc_single_image=2967 img_size=full aligment=center][vc_column_text]Hoy vamos a preparar unas…. (text from blog)Check here one post:
https://mariazannia.com/de-la-tierra-al-plato/Yes, exactly.
Forum: Plugins
In reply to: [The Events Calendar] Mobile problem in month viewHi BeardedGinger,
The javascript errors are shown in my first message. The problem is that I detect the error, but I don′t know how to solve it.
Thank you!
Forum: Plugins
In reply to: [The Events Calendar] Mobile problem in month viewHi,
Thank you for your prompt reply.
1. All the plugins and WP are the latest version.
2. Deactivate all the plugins except Events Calendar and problem remain the same.
3. Change theme to “Twenty Fifteen” and plugins deactivated. Problem solved.
4. Active all the plugins and test with “Twenty Fifteen” and working fine.So the problem has to do with my theme. So what can I do next?
Forum: Plugins
In reply to: [qTranslate X] Change flags icon to "EN" and "ES"I added the following code in the header.php:
<a href="?lang=en">EN</a> <a href="?lang=es">ES</a>
You can also put the previous code in a css class in order to adjust to your style needs.
Forum: Plugins
In reply to: [qTranslate X] Change flags icon to "EN" and "ES"Forum: Plugins
In reply to: [qTranslate X] Change flags icon to "EN" and "ES"Yes
You can check here.
Forum: Plugins
In reply to: [qTranslate X] Change flags icon to "EN" and "ES"Hi,
Finally I fixed it by adding the following code in the header.php just inside the menu div:
<div class=”langs”>EN ES</div>and this is the css if anyone needs it:
.langs {
display: block;
position: fixed;
top: 130px;
right: 10px;
z-index: 14090;
font-size: 12px;
font-weight: normal;
}
.langs a {
color: #fa9819;
}
.langs a:hover {
color: #808285;
}Forum: Plugins
In reply to: [qTranslate X] Change flags icon to "EN" and "ES"Parse error: syntax error, unexpected end of file in /home/valderizzp/www/wp-content/themes/swag/functions.php on line 2556
if(strtolower(get_the_title($is_set_home_page))==strtolower($flv_page_title)){
$out_content=”;
if (function_exists(‘qtranxf_use’)){
global $q_config;
$out_content=do_shortcode(qtranxf_use($q_config[‘language’],getPageContent($is_set_home_page), true));
} else {
$out_content=do_shortcode(getPageContent($is_set_home_page));}
}else{
//page content
$out_content=”;
if (function_exists(‘qtranxf_use’)){// The LINE 2556 is the one below
global $q_config;
$out_content=do_shortcode(qtranxf_use($q_config[‘language’],getPageContent($item -> object_id), true));
} else {
$out_content=do_shortcode(getPageContent($item -> object_id));
}
}Forum: Plugins
In reply to: [qTranslate X] Change flags icon to "EN" and "ES"Nope, it doesn′t work.
Looks like there is a conflict in functions.php and stops working the hope page.
Forum: Plugins
In reply to: [qTranslate X] Change flags icon to "EN" and "ES"fburrati
I just add it and it doesn′t work.
Do I have to write it like this?
echo ‘ title=”‘.$q_config[‘EN’][$english].'”‘;Forum: Plugins
In reply to: [qTranslate X] Change flags icon to "EN" and "ES"Thank you both for your reply.
Gunu, I need a php code for each link, because I located directly the code in the header and I haven′t use as a menu item.
So what is the link code for each language?
Can you give me an example?