Forum Replies Created
-
AuthorPosts
-
you do not need to check it on each slide.
if there is already a choice go and press on 2D deselect all – goto 3D press on deselect all than apply to others!
now goto one slide make your choice and press apply to others – ok and don’t forget to save the layersliderplease tell us how if it was a fix with common interest. Maybe we got the problem once too.
on stackoverflow: https://stackoverflow.com/questions/1653308/access-control-allow-origin-multiple-origin-domains
from the security point of view this might be the better method – because only your domains are allowed to access cross-site content
if you only have the one url i would try this:
<FilesMatch "\.(ttf|otf|eot|woff|woff2|sfnt|svg)$"> <IfModule mod_headers.c> SetEnvIf Origin "^http(s)?://(www\.)?(yinyangbangers.com)$" AccessControlAllowOrigin=$0 Header add Access-Control-Allow-Origin %{AccessControlAllowOrigin}e env=AccessControlAllowOrigin Header set Access-Control-Allow-Credentials true </IfModule> </FilesMatch>
if you will see a white page – you can allways get rid of that entry and try different options.
maybe ( you now best your domains ) try this instead of wildcard asterix in htaccess:
<IfModule mod_headers.c> SetEnvIf Origin "http(s)?://(www\.)?(domain1.org|domain2.com)$" AccessControlAllowOrigin=$0$1 Header add Access-Control-Allow-Origin %{AccessControlAllowOrigin}e env=AccessControlAllowOrigin Header set Access-Control-Allow-Credentials true </IfModule>
if only for font :
<FilesMatch "\.(ttf|otf|woff)$"> <IfModule mod_headers.c> SetEnvIf Origin "http(s)?://(www\.)?(domain1.org|domain2.com)$" AccessControlAllowOrigin=$0$1 Header add Access-Control-Allow-Origin %{AccessControlAllowOrigin}e env=AccessControlAllowOrigin Header set Access-Control-Allow-Credentials true </IfModule> </FilesMatch>
some people which are behind only https tells that the code must be edited a bit to:
<FilesMatch "\.(ttf|otf|woff)$"> <IfModule mod_headers.c> SetEnvIf Origin "^http(s)?://(www\.)?(domain1.org|domain2.com)$" AccessControlAllowOrigin=$0 Header add Access-Control-Allow-Origin %{AccessControlAllowOrigin}e env=AccessControlAllowOrigin Header set Access-Control-Allow-Credentials true </IfModule> </FilesMatch>
i think php 5.4 is too old!
“I tried inserting various types of refferers maybe they are wrong? Thanks in advance”
what form do they have.i have had never problems with that – if on google site the wildcard is placed right.
so if there is in the list : *mywebsite.com/* in most of the cases it works perfect – only sometimes i have to verify the url on google webmaster tools
PS : the thing with entering the last asterix on google is that it has to be followed by a space – otherwise the last asterix is lost
PPS: or do you have installed any other map-plugins
- This reply was modified 7 years, 5 months ago by Guenni007.
you mean if you show them on your site – but not to show them on google search?
i don’t know what this plugin does.
If i like to have the chance to choose the orderby option on galleries and masonries i put in functions.php of the child theme the following snippet:
http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/if(!function_exists('avia_custom_query_extension')) { function avia_custom_query_extension($query, $params) { global $avia_config; if(!empty($avia_config['avia_custom_query_options']['order'])) { $query['order'] = $avia_config['avia_custom_query_options']['order']; } if(!empty($avia_config['avia_custom_query_options']['orderby'])) { $query['orderby'] = $avia_config['avia_custom_query_options']['orderby']; } unset($avia_config['avia_custom_query_options']); return $query; } add_filter('avia_masonry_entries_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_post_grid_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_post_slide_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_blog_post_query', 'avia_custom_query_extension', 10, 2); add_filter('avf_magazine_entries_query', 'avia_custom_query_extension', 10, 2); add_filter('avf_template_builder_shortcode_elements','avia_custom_query_options', 10, 1); function avia_custom_query_options($elements) { $allowed_elements = array('av_blog','av_masonry_entries','av_postslider','av_portfolio','av_magazine'); if(isset($_POST['params']['allowed']) && in_array($_POST['params']['allowed'], $allowed_elements)) { $elements[] = array( "name" => __("Custom Query Orderby",'avia_framework' ), "desc" => __("Set a custom query orderby value",'avia_framework' ), "id" => "orderby", "type" => "select", "std" => "", "subtype" => array( __('Default Order', 'avia_framework' ) =>'', __('Title', 'avia_framework' ) =>'title', __('Random', 'avia_framework' ) =>'rand', __('Date', 'avia_framework' ) =>'date', __('Author', 'avia_framework' ) =>'author', __('Name (Post Slug)', 'avia_framework' ) =>'name', __('Modified', 'avia_framework' ) =>'modified', __('Comment Count', 'avia_framework' ) =>'comment_count', __('Page Order', 'avia_framework' ) =>'menu_order') ); $elements[] = array( "name" => __("Custom Query Order",'avia_framework' ), "desc" => __("Set a custom query order",'avia_framework' ), "id" => "order", "type" => "select", "std" => "", "subtype" => array( __('Default Order', 'avia_framework' ) =>'', __('Ascending Order', 'avia_framework' ) =>'ASC', __('Descending Order', 'avia_framework' ) =>'DESC')); } return $elements; } add_filter('avf_template_builder_shortcode_meta', 'avia_custom_query_add_query_params_to_config', 10, 4); function avia_custom_query_add_query_params_to_config($meta, $atts, $content, $shortcodename) { global $avia_config; if(empty($avia_config['avia_custom_query_options'])) $avia_config['avia_custom_query_options'] = array(); if(!empty($atts['order'])) { $avia_config['avia_custom_query_options']['order'] = $atts['order']; } if(!empty($atts['orderby'])) { $avia_config['avia_custom_query_options']['orderby'] = $atts['orderby']; } return $meta; } }
go to layerslider – select your slider. Normaly it opens on slide1 – on the right side of that window there is a button : “select transitions”
press that button. on the new window you can select all or on hovering – you can see a preview of the transition. Select those you like to have.
Now there is the opportunity to apply these transition to others (slides).can you make an image of your advanced layout builder setting of that page ?
and of menu linkWhat do you mean by : I changed my host
you are still behind an apache server?are you now using a cdn?
well – this is a colorsection – set up his ID to features by opening the colorsection element – scroll down – there is a field for “For Developers: Section ID”
sorry i do not see the link as a participant as you
on that menu link ? Your site is a https site – did you insert on that menu link the absolute Path with https ?
well on my page (see above example page) i did it in your way – with a code block and i typed in with keyboard
<div id="connect2"></div>
a custom link than to the menu (on my case): https://webers-testseite.de/8-columns/#connect2 thats all. (Even if i mark Deactivate schema.org markup for a clearer code it works.So there had to be some inconsitances on your installation.
Can you show me your link ? or has it to be secret.you told us that your site is a one page landing page. If the anchors are on that page it has to scroll. But if you are jumping from a different page to the anchor it never scrolls in this way.
What you like is a loading of the anchor page to the top and than in a time shift scrolling to the anchor.
Maybe this could be realised by a timecodes redirect – but will it be good webpractice?A javascript solution is the only thing for me that could work
- This reply was modified 7 years, 5 months ago by Guenni007.
yes you are right – if you choose in enfold options logo centered the opportunity to have Menu as icon is gone.
So choose Logo left menu right and then goto quick css and paste in:
.responsive #top .logo { width: 100% !important } .logo img { margin: 0 auto }
for smaller screens it is better to have it left ? ! If not feel free to make some media query settings
hi nikko – he wants a shadow under the menu.
The question is to what – to the ul or to the text of a menu-point – to the active listpoint? etc.
what kind of menu did you choose (with separator, without etc.)2nd: On SEO case – can you show us a link to your site?
- This reply was modified 7 years, 5 months ago by Guenni007.
and furthermore your quotationmarks are (maybe it is converted by boardsoft) not the normal one (or maybe pasted from word?) – i copy pasted your container-lines above and it does not work. Then i write it with my keyboard myself – and it works:
see here: https://webers-testseite.de/8-columns/
and by the way – there has to be something under the anchor – that it has the chance to scroll to top
It refreshes the page and the page URL is below in private data.
AND when I did this > I Turn on Custom CSS Class field for all ALB Elements and entered connect In the Custom CSS Class Field
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ It does not refresh and arrive at the correct page location.This works on other sites. Not this one.
And here is the beef : For what do you need that extra class? you only need the ID – no class on menu point is needed.
in your menu you have to insert a custom Link
in url : https://mysite.com/#connect (allways take the absolute path)
in Link Text: what you wantthats all
Hey Basilis – gratitude is not the reason why i’m doing that. But I expect an answer if an approach leads to a solution of the request or not. Because i do often look back if there is success on that thread, and if any help is needed furthermore. This means investing time to it. Thats all.
i think Rikard is right – W3TC is one of those mighty tools – but sometimes for users a bit too mighty – means a lot of settings which can confuse normal users.
So if i gave the admin role to my customers – i often install wp super cache and in combination with bwp minify.
Very rarely there are problems with advanced layerslider – this could be solved by excluding the scripts of advanced layerslider from BWP MInify influence.or you do it by counting the mainmenu points:
this code will colorize the 3rd menu-point.main_menu #avia-menu li:nth-child(3) .avia-menu-text { color: #900; }
Yes – i think the easiest way is to give each Menu Point his own class
(you can click every image to enlarge)
Goto Menu and have a look on top of the window (red arrow – press the button)
the slideing out gives you many oportunities – mark that Classes square
now open the menu-point you like to give a class and input a classname in the concerning field:
now you can select that menu point with the class you gave.
in my example :
li.special-color .avia-menu-text { color: #090; }
June 9, 2017 at 11:01 am in reply to: Bug in Enfold Contact Form: Color Scheme "Light Transparent" #806002hm – i can not confirm this – on your site i can select with Chrome/OSX (also with firefox, safari, opera)
you mean a
­
i think this soft-hyphen as html-entity does not work on headings in Enfold – but there are a lot of analogons
try the unicode-dezimal :­
with a smicolon after the 3 !!! – the bord soft changes it directly to a space_______
Entschuldige ich übersah die gemeinsame Sprache.
Also ich habe das mit dem unicode-dezimal code gemacht:Beispielseite: https://webers-testseite.de/ikom/beispiel-seite/
PS: leider ist es nach dem Speichern auch nicht mehr zu sehen – hat aber Einfluss. Selbst im Quellcode sieht man das nicht mehr wirklich
PPS: im Textfeld von Enfold funktioniert übrigens auch das
­
– auch bei dort eingefügten h1. Ich stellte es nur einmal fest, als ich es auch in dem Inhaltselement “Spezielle Überschrift” brauchte ging das html-Entity nicht- This reply was modified 7 years, 5 months ago by Guenni007.
ok allthough this works – i did it now in a different way:
this seems to be faster – and for the sidebar logos i have the array method)add_filter('avf_logo','av_change_logo'); function av_change_logo($logo) { if( is_page(21) ) { $logo = "path to url1"; } elseif ( is_page( array( 42, 54, 6 ) ) ) { $logo = "path to url2"; } elseif ( is_page() && !is_page(1307) ) { $logo = "path to url3"; } return $logo; }
you allways can do that! Its up to you – there are some good beginners deals – but most are associated with costs. Alot of good caching tools have integrated such settings for cdn.
But before all that i would do all the other trick before. Enable gzip for the most of my files (see htaccess) etc. pp
by the way – i alway make a new menu for the footer menu.
because marking both for one menu – will result in double IDs on one page . – this is not valid code (it works but w3c rules says ID means ID
this will be a good idea not to have here a multible choise (only one or the other)
so shortcodes will also work without snippet if i make a folder in this way? :
enfold-child/config-templatebuilder/avia-shortcodes -
AuthorPosts