Forum Replies Created
-
AuthorPosts
-
ok, I have done all your steps, and… 0 bugs… all is working great.
:-( I’m not able to reproduce your bug… Maybe you can give me a point by point steps about what you are trying to do and I will try to do the same?
Thanks@oroshazimedia
I have a fresh WordPress install, Enfold V.3.5.1 and TinyMCE Advanced V4.2.8 > https://wordpress.org/plugins/tinymce-advanced/
Is this the same editor you are talking about? Because I test within a page and a post and didn’t get any issues…
ThanksMarch 23, 2016 at 12:15 pm in reply to: Social Icons in footer socket – Erraneous behaviour of first icon #602467I just looked at you HTML code and there is something that should not be present within an
<ul></ul>
tags, it’s a empty link:
<a href="/imgprint/"></a>
Here:
Look at my own code, there is not such code:
PS: I do not want to override Enfold support team, just wants to help… :)
Hi @rlogan2334
I do the same test as you: fresh WordPress, fresh 3.5.1 Enfold, Enfold child theme and it works. Why ?
It’s because of the Responsive Full Width Tabs CSS that conflicts with Enfold CSS
You cant use as it a CSS and hope it works out the box in a theme /-)Responsive Full Width Tabs CSS use .content class > conlfict
Responsive Full Width Tabs CSS use .tabs class > conlfict
Responsive Full Width Tabs CSS use .tab class > conlfictTry first to rename all Responsive Full Width Tabs CSS class with other class name.
After that don’t put all your code in an Avia Code Block but instead:
– put all the HTML in simple Text block
– and the call to the JS in a code blockAdjust also the path to @font-face according to your child theme path
Hope it helps
EDIT :
Forgot that you will also have to change the JS code according with the new classe name:CBPFWTabs.prototype._init = function() { // tabs elemes this.tabs = [].slice.call( this.el.querySelectorAll( 'nav > ul > li' ) );
by
CBPFWTabs.prototype._init = function() { // tabs elemes this.YourClasstabs = [].slice.call( this.el.querySelectorAll( 'nav > ul > li' ) );
a lot of works… :-(
March 23, 2016 at 10:31 am in reply to: Social Icons in footer socket – Erraneous behaviour of first icon #602425@tonyw I just try with:
[nolink]@company<a href="http://example.com">example</a>
and it’s ok too… sorry…Hi
@oroshazimedia are you sure?
I’m using TinyMCE Advanced with Enfold since 5 years without any issues… But maybe you can tell me more about this?
ThanksMarch 23, 2016 at 10:04 am in reply to: Social Icons in footer socket – Erraneous behaviour of first icon #602411Hi
Strange issue you get… All I can say is that yesterday I set up a fresh wordpress install with 3.5 version of Enfold (no plugins, no child theme) and I get no problem with that…My footer is set with: [nolink] © Copyright MyCompany
I have 3 social icons in this footer and all the icons and links icones are ok…February 28, 2016 at 9:39 pm in reply to: PHP Fatal error: Call to undefined function get_header() #590493Hello Basilis
Never seen that issue before or ever read regarding that point
Easy to reproduce, just go with Chrome to: http://www.your-website.com/wp-content/theme/enfold/ anf you’ll get an 500 error
and if you have Log error, just look ath them.You said “Please disable the plugin” but I never talk about any plugin…
Now, regarding the blocked resources, I am not sure not blocking is the best ideal result…
Yes it is, Google say: do no hide anything, it’a as simple at that…February 28, 2016 at 3:56 pm in reply to: PHP Fatal error: Call to undefined function get_header() #590440Hello Josue
I do not use a robots.txt since a long time because of Google recomandations.
With thoses lines :
Disallow: /wp-content/themes
Disallow: /wp-includes/js
> You prevent Google bots to crawl JS and CSS filesPlease look at: https://developers.google.com/webmasters/mobile-sites/mobile-seo/common-mistakes?hl=en-US#blocked-resources
Hi @Ismael
Yes that was only with the grid view. Thanks for the tip but I uninstall this plugin /-)WPML : yes
Events calendar : no (but just the previous last one)Just uninstall The Events Calendar plugin
:-(Hi @Rikard
I found the issue :-)
It was “The Events Calendar” plugin that prevent my post to be displayed.
Maybe you can look at this further to test on you own :
Enfold + The Events Calendar plugin + W P M LIt’s a private site on my own computer, so I give you the URL in the private content…
Well done @boxseven :-)
So you have I guess you have modified the loop index php file as I see it’s single type ?@boxseven
What is the plugin you have used to manage/display the cars?
ThanksWell done @Diezel23 ! and good use of Enfold grid system.
Be carerul, you are using, like me, the great Essential Grid plugin, but if you keep the Enfold default lightbox, you have 2 lightbox taht are open when you a image (at the bottom of you homepage), you’ll have to disable Enfold lightbox or Essential grid lightbox, but not keep both :-)(http://webmechanics.co.za/contact/ > remove the default WordPress meta that give acess to your http://webmechanics.co.za/wp-login.php … )
Hello @Diezel23
Great site, but just 2 comments:
1- Links on your homepage maps open page within a _blank page, perhaps it will be better to open them into the same window?
2- You have all of you posts written with “admin” user,…. ouch! Avoid publish with the same user you are using to manage the site, because malicious guys will know they go /wp-admin/ and try to brute force with admin user :-)
Or use that plugin: https://fr.wordpress.org/plugins/sf-move-login/
Just my 2 cents!@rdswestnet
@Monique is right, the real esay way to add Google fonts to Enfold is to add some php code to you functions.php (assume your are using a child theme…), here is mine:/* HEADING */ add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Raleway titre'] = 'Raleway:300,500'; return $fonts; } /* CONTENT */ add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts){ $fonts['Raleway corps'] = 'Raleway:300'; return $fonts; }
As you can see I’m using 2 font-weight for the titles: 300 or 500 and only one for the content: 300
Don’t forget that even you declare this fonts to be used within Enfold, other plugins will override it, so I spent time to re-override those plugins to force them to use Raleway.There is another way to add your own fonts with @font-face in you styles.css, but it’s more complicated or maybe the easy, easy one: ask to Kriesi to include more Google font in Enfold… :-)
Thank you @iheartwine :-)
But this website is hundreds of hours customizing, 900 lines of CSS, a big functions.php, custom loop-index.php, no more Enfold menu and massive usage of other great plugins, and juste one font: https://www.google.com/fonts/specimen/RalewayHello
Here is my Enfold version… : domodecoJanuary 11, 2016 at 2:27 pm in reply to: The new Featured image slider do not resptect on his option #563155Hello @Ismael
Thanks a lot: it works now!
I thought I was crazy and the only one to have this issue…January 7, 2016 at 10:30 pm in reply to: The new Featured image slider do not resptect on his option #561565I think you do not understand me or my english is too bad…
I check your new page BUT the slider start automatically! and it it set to not start automatically!
Do you understand what I mean or not please?The quick css below just hide the loading stuff, but this is not the real the issue: the issue is this slider start himself
.avia_loading_icon {display: none !important;}January 7, 2016 at 9:17 pm in reply to: The new Featured image slider do not resptect on his option #561505???
Why are you talking about Easy Slider ?
I’m talking, since the start of this post of Advance Layout builder > Medias > FEATURED IMAGE SLIDER…
I have update the same page with this new feature, under you simple Easy slider.
The Featured image slider is set to not start automatically but it does.
I’m not the only one, @Tameez had the same issue.January 7, 2016 at 6:24 pm in reply to: The new Featured image slider do not resptect on his option #561420Yes you can but please remove the name of the site from your comment, if I gave you it in Private Content it’s because it must stay hidden.
Thanks> Please don’t remove my tests page, and be careful you are on a mulstite environnement
January 7, 2016 at 11:30 am in reply to: The new Featured image slider do not resptect on his option #561109Sorry @Vinay, I do not have custom anything in the demo page I gave you…
As I already said before, it’s a completly fresh and latest Enfold with one of you demo…
I give you again in private content all what you need to test it, did you go there ?!
ThanksThe fix you give, just hide the loading icon in Firefox, but not prevent the Featured image slider to start displaying other stuff on Chrome and Safari.
January 4, 2016 at 7:50 pm in reply to: The new Featured image slider do not resptect on his option #559434Hello @Andy
I have done what you said, completly remove Enfold folder and reupload a new one (just downloaded from my Themeforest acount), and it still do not works :
With Firefox I see a spinning wheel like this one : http://awesomescreenshot.com/0db5iy6w18
With Chrome and Safari, the Featured image slider start to display other posts…Hi @ismael
I’m afraid I do not understand your answer… Why do you give me php code about changing Woocommerce stuff?
My question was about how to use you ‘avf_avia_builder_helper_lightbox_size’ hook?
ThanksDecember 23, 2015 at 8:12 pm in reply to: Color section with fixed background image: the image is not visible at all #557195Hello @Dake
It’s done
but you are adminstrator so you can disable WP Maintenance Mode by yourself… ;-)“I am unable to view any pages even when logged in”
I just tried and has do issue, but it do not care now because WP Maintenance Mode is disable -
AuthorPosts