Forum Replies Created
-
AuthorPosts
-
Yes, the idea is to use a custom link with a hashtag (#) as the href + the CSS code, that way it will create the perception that the link is not clickable.
Hi!
There isn’t as far as i know, because WordPress creates hyperlinks for all menu items. You could change the pointer with some CSS though:
.dropdown_ul_available:hover > a { cursor: default !important; }Regards,
JosueHey!
Open wp-config.php (located at the root of the WordPress installation) and look for this line:
define ('WPLANG', 'pt_BR');Replace it by:
define ('WPLANG', 'en_US');Best regards,
JosueHey!
No, Enfold does have RTL support. Regarding WPML, check this tutorial: http://wpml.org/2011/06/creating-right-to-left-rtl-wordpress-sites/
Cheers!
JosueHey!
Do you have your WordPress dashboard in Portuguese?
Regards,
JosueHey!
Yes, that’s expected. That’s the only workaround that will do the job at the moment, basically when a person hovers over it it acts like a normal menu item but if they click it, nothing happens.
Best regards,
JosueGreat, you are welcome. Let us know if you have any additional questions :)
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHey Tim!
Try purging the W3 cache and test again if the lightbox works.
Regards,
JosueHi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueHi,
Try adding this at the very end of your theme functions.php file:
function inline_popup_enabler(){ ?> <script> (function($){ $(window).load(function() { $('.inline_popup').magnificPopup({ type:'inline', midClick: true }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'inline_popup_enabler');You can mix it with the other snippet i gave you in the other post.
Regards,
JosueHi Trev,
Open js/shortcodes.js and look for this (around 3861):
if( this.isAnimating || this.itemsCount < 2 ) { return false; }Replace it by this:
if( this.isAnimating || this.itemsCount < 2 ) { return false; } if( dir === 'next' && this.current >= this.itemsCount - 1 ) { this._stopSlideshow(); return false; }Regards,
JosueJuly 10, 2014 at 4:30 am in reply to: Major problem: text blocks empty (correct content in visual editor however) #289303Hi!
I couldn’t reproduce the issue. But i noted you have 2.8, the newest version of Enfold is 2.9, please update it.
Regards,
JosueHey!
It looks great!
Best regards,
JosueHey Ralph!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 480px) { .logo a { top: 15px; } }Cheers!
JosueHey Gabe!
You could copy the code you have in helper-main-menu.php to the debug input on a separate new Page, then you can access and edit the Masonry element as a normal ALB popup, when you are done simply put the updated code in helper-main-menu.php again.
Best regards,
JosueHey!
Check it now:
http://www.informatchen.se/preview/I was able to achieve what you want using CSS:
.custom_title:after { content: url(https://www.informatchen.se/wp-content/uploads/2014/07/check341.png); position: relative; top: 2; right: -3; }The tab title in question is set as an span.custom_title:

Best regards,
JosueHi!
You still have Enfold ver 2.0.1, latest version is 2.9.
Cheers!
JosueHey!
Both banners looks the same:
http://screencast.com/t/U50EA63nARegarding the question about making a menu item not clickable you can do something like this:
http://screencast.com/t/TjcDAiGTX8C4Cheers!
JosueHi!
No, that plugin doesn’t come with the theme. You can delete it if you want.
Cheers!
JosueHi!
Do you have any plugin that may be changing the images URLs (caching/minifying/etc)?
Regards,
JosueYou are welcome Finlando, always glad to help :)
Regards,
JosueHi Jul!
In this case it would be better to disable the Enfold lightbox, you can do that in the Theme Options page:
http://screencast.com/t/dVgbLfXdwBest regards,
JosueHi!
Try changing that URL from:
http://goonlinewebdesign.ie/wp-content/uploads/LBrownCollection.jpg?bffe41
To:
http://goonlinewebdesign.ie/wp-content/uploads/LBrownCollection.jpg
Regards,
JosueYeah, it’s a workaround. You are welcome :)
Hey!
The example i made is intended to be used with two images (look at the HTML markup). Regarding the Replete logos, we used a technology called canvas there, here’s a tutorial on how to do something like that.
Cheers!
JosueJuly 9, 2014 at 9:11 am in reply to: Major problem: text blocks empty (correct content in visual editor however) #288890Hi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueYou are welcome :)
Regards,
JosueHey!
Try using a normal Youtube URL (without any parameters) and add this at the very end of your theme / child theme functions.php file:
function change_magnific_popup_iframe_setting(){ ?> <script> jQuery(window).load(function(){ jQuery('a[href*="youtube.com/watch"]').magnificPopup({ type: 'iframe', iframe: { patterns: { youtube: { index: 'youtube.com', id: 'v=', src: '//www.youtube.com/embed/%id%?rel=0&autoplay=1' } } } }); }); </script> <?php } add_action("wp_footer", "change_magnific_popup_iframe_setting");Cheers!
Josue -
AuthorPosts
