Forum Replies Created
-
AuthorPosts
-
March 17, 2018 at 12:37 pm in reply to: My website it's very low on http but seem good on https #928446
no that is ok that your child-theme functions.php do not have that closing tag.
And no i can not login – because i’m Participant as you – i do not see private content area
March 17, 2018 at 11:19 am in reply to: Changing the font size of a H1 text inside a text-block in a portfolio item #928431hm – more than one h1 per page ? this is no good behavior – google don’t like it if a page has more than one h1 each.
try this first – for the buttons you talk to – is it the same link?.product_title.entry-title { font-size: 18px; }
.avia-button-fullwidth .avia_iconbox_title { font-size: 18px; }
.avia-button .avia_iconbox_title { font-size: 14px; }
look to the code not given by youtube on clicking the embed code – look to the browser url of your video (does not work on video alb element)
there is something like:https://www.youtube.com/watch?v=mlf4bidp2yc
– behind that add that?autoplay=1&ecver=2&showinfo=0&loop=1&rel=0
the ecver=2 is to get rid of that overlay on pause the video
– but that is not so important here as color-section background videoif you have an image and want to link to a yourtube video in a lightbox – take the same code as above and ad
&iframe=true
behind the link:
https://www.youtube.com/watch?v=mlf4bidp2yc?ecver=2&showinfo=0&autoplay=1&loop=1&rel=0&iframe=true
click the image to start the lightbox video
see here in action: https://webers-testseite.de/weber/karte/March 17, 2018 at 10:38 am in reply to: My website it's very low on http but seem good on https #928424first of all – it should not run in http mode anyway. If so – you have done something wrong on setting it up.
The reason for setting up a site as SSL secured is that it always runs this way.
After switching to https – did you realy change all entries concerning to that protokoll?
I mean not only the wordpress url / site url in General Options of WordPress.
Have you any entries concerning to your url f.e. in wp-config.php of your wordpress install or in htaccess ?
For my customers who switched a running system to https – i do a Search and Replace in Database to realy be sure that every link was switched. This is a realy nice tool – but be shure what you do.
F.e. a desaster would be to search for http and replace it with https –
so better to use the replace domain url option – or to search for more specific text like http://your-domain and replace it with https://your-domainDepending on your provider, you can set a forced https option – but this is possible in htaccess as well.
But i guess real performance problems comes from setting up the cdn in combination with caching tools.
So i guess you would like to wait til a mod here has a login and look to your installation.March 17, 2018 at 10:04 am in reply to: ">" Text over a Full picture slider missing the picture #928420hm : https://webers-testseite.de/full-width-slider/
But: yes you are right if i try to edit that again – code was changed to the real sign back ! and than the image is gone.
So you can do it in one turn – and do not edit that caption / slider again. ! strange-
This reply was modified 7 years, 3 months ago by
Guenni007.
still my tip: use svg
make the browserwindow very small and see the differenceimage link to download: https://webers-testseite.de/wp-content/uploads/Magda.svg
Download the Illustrator Dok for changing text – but it would be best if you have svgs with only path (vectors) in it – so transfer fonts to path before saving as svg ( Link )the other image is not sharp because you inserted the small calculated image of a i believe no sharp big image:
/wp-content/uploads/2016/12/Magdalena_Rytwinska-Rasz_4871_300x600px.jpg
the full version isn’t there?-
This reply was modified 7 years, 3 months ago by
Guenni007.
what do you mean by copy right menu? a copy right info only
the socket itself (Sockel in German) does have allready the option of copyright info. You only need to give it a bit css to make it bigger.
On Enfold styling you can have background-image for Socket too ( you can upload your own there)
and only have to determine a min-height f.e. for the socket.March 16, 2018 at 1:30 pm in reply to: ">" Text over a Full picture slider missing the picture #928082if the html entitie does not work try the unicode dezimal
see here: http://unicode.e-workers.de/entities.php
for greater than>
edit haha boardsoft will transfer directly to the signs:> with ;
behind ( the semicolon behind will make it)
and for less than<
samething :< with ;
maybe they will work better (allthough i don’t know why)Edit: the softhyphen set if you want to have an invisible breakingpoint
( ­ with ;)
often did not work on Enfold headings or captions – but the
­ with ;
will work .March 15, 2018 at 5:37 pm in reply to: Enfold LayerSlider WP issue ! Font style on mobile not correct #927513look at Anton : https://fonts.google.com/specimen/Anton
little g is a bit different and big Qor you may upload the impact ttf file to https://www.fontsquirrel.com/tools/webfont-generator – and download the generated webfonts
i mean that right – up to date
edit _: i see it is advent procan you let me see a link on that – screenshot is not helpful
i mean the domain seems to be clear :lol but the link would be greatBy the way – what font is it?
ok i see what happend –
Compared to the previous version, you changed the order.on 4.2 in register-admin-options.php the new filter ( avf_register_custom_backend_styles ) is behind !:
and this is a logical sequence – first register the options than customize it.You might change this in next update please
//required for the general styling color schemes include('register-backend-styles.php'); //required for the general styling google fonts include('register-backend-google-fonts.php'); //required for the advanced styling wizard include('register-backend-advanced-styles.php');
on 4.2.6 and i guess 4.2.5 it is before register-backend-advanced-styles !!
can be closed on my end here.March 15, 2018 at 12:40 pm in reply to: Italic font (not oblique) when using the italic button in i.e. ”Text Block”. #927250on register-backend-google-fonts there is the info which fonts are loaded
on open sans there is:'Open Sans'=>'Open Sans:400,600',
so i guess that the real italic isn’t loaded if you choose on Enfold Options Dialog the Open-Sans Font.
i think for you it might be the best to load a new set – and i called it now : Open Sans Plus Italic
this to your functions.php of your child-theme:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Open Sans Plus Italic'] = 'Open Sans:300,300i,400,400i,600,600i,700,700i'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Open Sans Plus Italic'] = 'Open Sans:300,300i,400,400i,600,600i,700,700i'; return $fonts; }
you will than have at the end of the enfold font list – last entry : Open Sans Plus Italic
i hope – if you choose the italic option it will take the correct font-style-
This reply was modified 7 years, 4 months ago by
Guenni007.
Let the input field in Enfold Google Map api empty !
because it does not load – if there was no input in that field
EDIT: this is what enfold would insert if enfold options are set – it can be placed in footer too as well
add_action( 'wp_footer', 'custom_gmap_script', 10 ); function custom_gmap_script() { if( is_page(35) ) { ?> <script type='text/javascript'> /* <![CDATA[ */ var avia_framework_globals = avia_framework_globals || {}; avia_framework_globals.gmap_api = 'YOUR_API_KEY_HERE'; avia_framework_globals.gmap_maps_loaded = 'https://maps.googleapis.com/maps/api/js?v=3.30&key=YOUR_API_KEY_HERE&callback=aviaOnGoogleMapsLoaded'; avia_framework_globals.gmap_builder_maps_loaded = 'https://maps.googleapis.com/maps/api/js?v=3.30&key=YOUR_API_KEY_HERE&callback=av_builder_maps_loaded'; avia_framework_globals.gmap_backend_maps_loaded = 'https://maps.googleapis.com/maps/api/js?v=3.30&callback=av_backend_maps_loaded'; avia_framework_globals.gmap_source = 'https://maps.googleapis.com/maps/api/js?v=3.30&key=YOUR_API_KEY_HERE'; /* ]]> */ </script> <?php } }
you had to modify YOUR_API_KEY_HERE to your Maps API Key 4 times !
you can see it here working: https://webers-testseite.de/weber/contact-2/
and on the other pages no gmap is loaded-
This reply was modified 7 years, 4 months ago by
Guenni007.
try a combination of this: (my test page was ID 35) and do not enter a google api key to enfold options dialog (save it)
replace the xyxyxy with your api key !Edit: go on with https://kriesi.at/support/topic/disable-loading-google-maps-api-where-not-needed/#post-926707
-
This reply was modified 7 years, 4 months ago by
Guenni007.
maybe a mod knows how to prevent the backend api load.
All frontend apis are disabled by this.try this to your functions.php of child-theme:
Example page here ID=3184 so if not page ID = 3184 than disableadd_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1); function disable_google_map_api($load_google_map_api) { if( !is_page(3184) ) { $load_google_map_api = false; return $load_google_map_api; } }
March 14, 2018 at 3:16 pm in reply to: (German) DSGVO – Deutschland, Datenschutz, Google Fonts, Google Maps, YouTube #926645do not forget the plugin itself with its given structure
the upload seems to be not full !
fonts are missing it goes from advent-pro till yellowtailAha – man muss die Shortcode Funktion erst aktivieren – das hier kommt in deine functions.php des child-themes:
function polylang_shortcode($atts, $content = null) { if (empty($content)) return ''; extract( shortcode_atts( array('lang' => ''), $atts ) ); if (empty($lang)) return "<h3>You must specify 'lang' using shortcode: polylang</h3>"; return ($lang == pll_current_language()) ? $content : ''; } add_shortcode('polylang', 'polylang_shortcode');
dann kannst du das wie oben nutzen:
[polylang lang="en"]Whatever you like here[/polylang][polylang lang="de"]Was immer du auch hier haben möchtest[/polylang]
can you check if this will work :
[polylang lang="en"]English[/polylang] [polylang lang="de"]Deutsch[/polylang]
bei WPML gibt es diese Möglickeit jeweils in shortcodes verpackt die Sprache zu kennzeichnen.
oder einfach mal versuchen:
[en]English[/en] [de]Deutsch[/de]
March 14, 2018 at 8:57 am in reply to: (German) DSGVO – Deutschland, Datenschutz, Google Fonts, Google Maps, YouTube #926490here are all files that has to be used for all enfold fonts implemented.
https://webers-testseite.de/local-google-fonts.zip
maybe Yigit can upload them on a kriesi server – don’t know how long i can host them.
Do not forget to deactivate the google font loading via functions.php of the child theme:add_action( 'init', 'enfold_customization_switch_fonts' ); function enfold_customization_switch_fonts() { global $avia; $avia->style->print_extra_output = false; }
by the way: if the fonts are activated manually – you can use the enfold options as well – the classes are set and css rules are set as before. Only activation of the fonts must be done manually via local install
March 13, 2018 at 7:34 pm in reply to: (German) DSGVO – Deutschland, Datenschutz, Google Fonts, Google Maps, YouTube #926210and now get into more paranoia : what about cdn use ???
if the server isn’t in germanyHello last century; What are 100 lawyers on the seabed
I can only shake my head as this country sends itself out. With the Internet speeds, we are already behind the moon, now everyoone is still trying to drive the internet traffic even worse in creating legal obstacles.
that little plugin is easy to make but – to download the files and to put in the css is the work that had to be done manually.
this is the php of that plugin:
<?php /* Plugin Name: Local Google Web Fonts Description: Code to host Google Fonts locally Version: 1.0 */ /* Start Adding Functions Below this Line */ function local_google_fonts() { wp_enqueue_style( 'LocaleGoogleWebfonts', plugin_dir_url( __FILE__ ) .'assets/css/fonts.css' ); } add_action( 'wp_enqueue_scripts', 'local_google_fonts' ); ?>
css is what you get on https://google-webfonts-helper.herokuapp.com/fonts
the fonts downloaded there comes into the fonts folder (on that case it is only comfortaa in it) of that plugin (see structure above)did you know about the troubles concerning to godaddy and zip implementation?
https://kriesi.at/support/topic/when-opening-a-fresh-saved-page-or-opening-existing-pages-goes-to-404/#post-926001here is the godaddy site to read for you: link
March 13, 2018 at 3:07 pm in reply to: When opening a fresh saved page or opening existing pages goes to 404 #926106Unfortunately that goes beyond my knowledge. I can easily google the right terms and find out via transfer where the mistake could be, but in order to fully understand the connections, I would have to learn more.
Sorryedit : i tested it on a playground of mine. (https://webers-testseite.de/weber/)
The code of Josue still seams to work :
add_action( 'init', 'enfold_customization_switch_fonts' ); function enfold_customization_switch_fonts() { global $avia; $avia->style->print_extra_output = false; }
i wrote a little plugin to include and load my needed google fonts localy. (see how to here)
via the google fonts helperso for me this is for an existing webpage better – for developing the page and customer response i like to change webfonts quick via enfold embedding – after the page is online – i will go this way then
-
This reply was modified 7 years, 4 months ago by
Guenni007.
March 13, 2018 at 11:21 am in reply to: When opening a fresh saved page or opening existing pages goes to 404 #926010here you can find how to activate the php error logging on godaddy:
https://ca.godaddy.com/help/setup-php-error-logging-26423
Maybe that gives us valuable hintsmaybe you have changed php version on that running system? – i read on godaddy support that sometimes this comes to troubles on uploading files to media library etc. pp – you see it might be a matter of hoster.
My sites are running on hosteurope : if i activate the APC Caching – all my WordPress Websites have a lot of mismatchings.
March 13, 2018 at 11:10 am in reply to: When opening a fresh saved page or opening existing pages goes to 404 #926001well enfold for example uses in the last updates a kind of minification of js and css . Don’t know if f.e. these files are only brought together or if they are zipped. Concerning to a lot of troubles with importing Demo files here on board or with layerslider demos we learned that godaddy has to be caused to enable zip files: https://ca.godaddy.com/community/Managing-Web-Hosting/ZipArchive-need-to-be-enable/td-p/7942
maybe there are other settings to be enabled on godaddy to work well.Or see here article: My blog keeps coming up as a blank page: https://ca.godaddy.com/help/troubleshooting-wordpress-5675
-
This reply was modified 7 years, 3 months ago by
-
AuthorPosts