Forum Replies Created
-
AuthorPosts
-
Hey!
Make sure you are using the latest version of Enfold (3.0.2).
Regards,
JosueOctober 29, 2014 at 7:42 am in reply to: Layerslider PHP-Code only work with a 2nd layerslider as an avia-element #342582Hi!
The bundled version of LayerSlider is meant to be used within the Enfold Layout Builder, if you want to use it via shortcode or PHP function you’d need to purchase LayerSlider as a standalone plugin and disable the Enfold one afterwards.
Best regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueOctober 29, 2014 at 7:21 am in reply to: Page specific menu items and the search results page #342576Hey!
Try with this:
.search .menu-item-type-custom, .search .menu-item-object-custom { display: none; }Cheers!
JosueHey!
The custom link is a meta data (“av-custom-link”) attached to the media file, in this case i think you’d need to do that with the term in question, check out /enfold/config-templatebuilder/avia-template-builder/php/media.class.php:87.
Cheers!
JosueHi!
Try with this code:
#top .av-submenu-container { height: auto; }Regards,
JosueHey!
I’ll tag this topic to Kriesi, please wait for his response.
Best regards,
JosueOctober 28, 2014 at 10:57 pm in reply to: Abnormal Portfolio & Post items grid layout in Enfold V3.0 for RTL users #342439You are welcome, always glad to help :)
Regards,
JosueThanks for the heads up, i’ll report this issue.
Cheers!
JosueOctober 28, 2014 at 5:46 pm in reply to: Masonry: display post's whole content / strip the post link #342340Great, let us know how it goes :)
Best regards,
JosueOctober 28, 2014 at 8:32 am in reply to: "Load More" with Justified Image Grid Plugin causes an error #342070I just removed that last snippet from Quick CSS and the caption is still not showing so i don’t think that’s what caused the disappearance of the caption, it may be a misconfiguration in the third-party plugin you are using for the gallery.
Regarding the Enfold masonry gallery problem you mentioned, one thing you can do is create a test (private) page with a gallery so we can take a look.
Cheers,
JosueHey!
I guess you are referring to the Custom Widget area generation, if that’s the case you’d need to edit the /enfold/framework/php/class-sidebar-generator.php file, try removing the
constructfunction:function __construct() { ... }Cheers!
JosueHi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { $("li#menu-item-4014").before($("li.searchBox")); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueHi Lynn!
To be honest i’m not an expert on this matter but i’m pretty sure this issue would happen with any other theme activated as these ‘dummy’ pages are actually being created by WordPress. I’ll ask the rest of the team to see if they can contribute with something.
Regards,
JosueOctober 28, 2014 at 7:59 am in reply to: "Load More" with Justified Image Grid Plugin causes an error #342062Hi Ron!
Try adding the following code to Quick CSS, that should remove the repeated title.
.mfp-title small { display: none !important; }Regards,
JosueHi Joe,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){ if(is_singular('product')){ ?> <script> (function($){ $(window).load(function(){ if (window.matchMedia("(min-width: 767px)").matches){ $(".single-product-main-image").before($(".single-product-summary")); } }); })(jQuery); </script> <?php } } add_action('wp_footer', 'add_custom_script');Regards,
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
Hi @scaico,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi!
Try removing this part:
<?php //get the sidebar $avia_config['currently_viewing'] = ‘page’; get_sidebar(); ?>Regards,
JosueOctober 28, 2014 at 7:36 am in reply to: full width sub menu not loading all items on small screen sizes #342052Hey!
Try adding this code to the Quick CSS:
#top .av-submenu-container { height: auto; }Cheers!
JosueOctober 28, 2014 at 7:30 am in reply to: "Load More" with Justified Image Grid Plugin causes an error #342049Hey Ron!
I’m not sure what do you want to show or hide, can you please create a mockup of the desired result?
Regards,
JosueHey!
I was able to upload a media file without issues (WPML, WPML Media, WooCommerce and WooCommerce Multilingual activated), check for Page called “Test”.
Regards,
JosueOctober 28, 2014 at 7:04 am in reply to: color selection not working for specific color code #342032Hi Alan,
If you want to disable the color picker auto-correction open /enfold/framework/js/avia_colorpicker.js and look for line 221:
cal.data('colorpicker').color = col = HexToHSB(fixHex(this.value)); fixHex = function (hex) {Replace it by this:
//cal.data('colorpicker').color = col = HexToHSB(fixHex(this.value)); fixHex = function (hex) {Regards,
JosueOctober 28, 2014 at 6:48 am in reply to: Masonry: display post's whole content / strip the post link #342021Hi Claus,
Open /enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php and look for line 818:
$this->loop[$key]['html_tags'] = array('a href="'.$this->loop[$key]['url'].'"','a'); //opening and closing tag for the masonry containerReplace it by this:
$this->loop[$key]['html_tags'] = array('div','div');Regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
function shortcode_clearfix_func() { return '<div style="display: block; visibility: hidden; clear: both; height: 0;"></div>'; } function register_custom_shortcodes() { add_shortcode('clearfix', 'shortcode_clearfix_func'); } add_action( 'init', 'register_custom_shortcodes');Once you done that, put the [clearfix] shortcode after the floated elements (columns) you want to clear.
Cheers!
JosueOctober 28, 2014 at 3:23 am in reply to: Little bug Easy slider on Safari / Impact on font weight #341946Hey Marie!
Seems to be caused by this code in your child style.css:
body #wrap_all { transform: translateZ(0); }Cheers!
JosueHey!
Yeah that seems to be a little buggy, i manage to fix it by adding an empty Color Section before the Map element (http://screencast.com/t/eFoEP2UMym), then i removed it and the Map remained full width.
Regards,
JosueHi!
This code in your custom CSS is overwriting the custom Text Block font declaration:
body, body p { font-size: 15px; }Regards,
JosueOctober 28, 2014 at 1:51 am in reply to: Blog Single Author Small – Doesn't Look Like Your Demo Page – Why? #341934Hi!
There seems to be a server-side functionality rewriting the media files URLs, when you try to load something like:
http://www.website.org/wp-content/uploads/2014/10/Romans-15-13.jpg
It gets converted to (and returns 404):
http://www.website.org/show-image/?img=/wp-content/uploads/2014/10/Romans-15-13.jpg
That’s why Facebook isn’t catching the image (the OG tag is included correctly) because it can’t load it directly, that’s the culprit of the issue.
Cheers!
JosueHey!
You need to change the ad z-index value, try something like 1000:
.my-custom-ad { z-index: 1000; }Regarding showing a different ad depending on the language you can use the “ICL_LANGUAGE_CODE” constant, you’d need to modify the code to something like this:
function ad_header() { if(ICL_LANGUAGE_CODE == "es"){ ?> <div class="my-custom-ad" ><a href="http://www.stimulus.com.pe" target="_blank"><img src="http://cop20.lamulti.media/wp-content/uploads/2014/10/logo-final-stimulus-ES.png" a href="http://www.stimulus.com.pe" target="_blank"></a> </div> <?php }elseif(ICL_LANGUAGE_CODE == "en"){ ?> <div class="my-custom-ad" ><a href="http://www.stimulus.com.pe" target="_blank"><img src="http://cop20.lamulti.media/wp-content/uploads/2014/10/logo-final-stimulus-EN.png" a href="http://www.stimulus.com.pe" target="_blank"></a> </div> <?php } } add_action('ava_main_header', 'ad_header');Best regards,
JosueHi!
You should be able to set that when you upload/change the LayerSlider slide background image – http://screencast.com/t/2ppOZblGxb
Best regards,
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
