Forum Replies Created
-
AuthorPosts
-
Hey,
That’s currently not possible with google maps widget yet. Maybe, you can try a third party plugin like this: http://wordpress.org/plugins/wp-google-maps/
Best regards,
JosueOn what Page are you trying this?
Best regards,
JosueHey spleeky,
Link the image to something in order to activate the lightbox. When inserting the Media make sure to check this:
Best regards,
JosueHey,
Most multilingual plugins require you to use different Pages per language (you can copy/sycn them tough), we recommend these two:
https://wordpress.org/plugins/polylang/ (free)
Best regards,
JosueAugust 21, 2016 at 5:07 am in reply to: PHP Fatal error: Call to undefined function apply_filters() in #675172Hey joerg32,
Try the following:
https://wordpress.org/support/topic/fatal-error-call-to-undefined-function-apply_filterswp-includesl10nphp#post-5567599Best regards,
Josue#top .main_color .container, #top .header_color .container { max-width: 1120px; background: white; }
That will affect both main content and header content.
Hi,
Make sure you’re copying the compiled CSS code and not the SCSS (you can toggle that in the little arrow at the right).
Best regards,
Josue-
This reply was modified 8 years, 6 months ago by
Josue.
August 21, 2016 at 5:01 am in reply to: Expand subscribe email box to the whole column width #675167Hey!
Try adding this code to the Quick CSS:
.newsletters .col-md-6 { width: 100%; }
Cheers!
JosueHi,
Set layout to stretched and add this to Quick CSS:
#top .main_color .container { max-width: 1120px; background: white; }
Modify as needed.
Best regards,
JosueYou are welcome, glad to help :)
Waiting for @morganw response.
Regards,
JosueAugust 21, 2016 at 4:53 am in reply to: Video poster attribute for the color section background video #675161Hey,
I know there is an option to set the background image when the video is not displayed. But the image is not loading well across all devices.
Can you expand on that? can you post a link to your site?
Best regards,
JosueHey!
Do the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_with_sidebar image size (increase its height).
4. Regenerate the thumbnails by clicking the button at the bottom.Cheers!
JosueAugust 21, 2016 at 4:50 am in reply to: Gravity Forms Conflict with Theme- Conditional Logic not being Populated #675159Hello,
Have you tried disabling all third-party plugins (except GF) to see if it gets fixed?
Regards,
JosueHey davidyasyit,
Refer to my answer here:
https://kriesi.at/support/topic/comments-and-related-entries-missing-when-post-edited-in-advanced-editor/#post-511900Best regards,
JosueHey,
Looks the same to me (left is Chrome, right is Safari):
Best regards,
JosueHey Tobiy,
1. You can use a Code Block.
2. You can use the wp_footer hook:
add_action('wp_footer', function() { ?> CODE <?php });
Best regards,
JosueHi!
Which image are you referring to? can you post a link to your site?
Best regards,
JosueHi M|C!
Use a stretched layout, the main container can be modded through CSS to make it look ‘boxed’, we’d need a link to your site though.
Cheers!
JosueAugust 21, 2016 at 4:39 am in reply to: How did Kreis accomplish the social button placements+ stats via kriesi.at? #675149Hi,
Customization made on kriesi.at isn’t something we can assist. Kriesi specifically mentioned and asked us not to provide the customization as he’d like to write a blog or tutorial on the customization down the road.
Best regards,
JosueHi,
Check your site. Here’s the code i used:
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['tripadvisor'] = array( 'font' =>'tripadvisor', 'icon' => 'uf262'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Trip Advisor'] = 'tripadvisor'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Reference:
Best regards,
JosueHey,
Try the following (child theme / theme functions.php):
add_action('ava_after_content', function($id, $content) { if($content == 'post'){ //CODE HERE } });
Best regards,
JosueAugust 21, 2016 at 4:26 am in reply to: Increase the font and the social media icons on the header and footer #675145Hey!
Try adding this code to the Quick CSS:
#top .social_bookmarks li, #top .social_bookmarks li a { width: 45px; }
Cheers!
JosueHey,
Don’t use the built-in button table feature, instead place the button as HTML:
<a href='#' class='button CLASS_HERE'>Open</a>
Best regards,
JosueHi,
Does it work if you take the table outside the tab content?
Best regards,
JosueAugust 21, 2016 at 4:13 am in reply to: WPML duplicated images are not used as background – always the same file #675142Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi,
You could create a custom shortcode to handle the copyright content per language:
function custom_shortcode_func() { ob_start(); ?> <div class="nav-previous alignleft"> <?php $currentlang = get_bloginfo('language'); if($currentlang=="en-US") { ?> This is English <?php else if($currentlang=="de-DE") { ?> This is German <?php } else { ?> This is Dutch <?php } ?></div> <?php $output = ob_get_clean(); return $output; } add_shortcode('socket_info', 'custom_shortcode_func');
Then you’d place
[socket_info]
as the copyright field value.Best regards,
JosueHi,
What you want to is to have a different logo per language?
Best regards,
JosueHi,
Try this code:
.av-main-nav > li > ul {background: #737373 !important;overflow: hidden;}
Best regards,
Josue -
This reply was modified 8 years, 6 months ago by
-
AuthorPosts