Forum Replies Created
-
AuthorPosts
-
March 13, 2018 at 9:45 am in reply to: Combo of Color Section and Advanced Layerslider won't work #925969
i can not reconstruct that error.
And mike if it is the following section – why is it shifted and not in line with the section?i do often see such behavior if customers try to have a repeating supposedly seamless background – But which has a certain small difference in brightness
March 13, 2018 at 9:21 am in reply to: Combo of Color Section and Advanced Layerslider won't work #925953yes but wihtout the link there is no way to see what has been happend
-
This reply was modified 7 years, 7 months ago by
Guenni007.
March 12, 2018 at 4:42 pm in reply to: Probleme beim Backup erstellen mit dem ordner ../cache-old #925596ist es denn überhaupt sinnvoll die Cache-Ordner zu kompieren?
Alle mir bekannten professionellen Backup-Tools bieten genau diese Option immer mit an, die Temp und Cache-Ordner zu excludieren.Nun zum Grund : hast du im Cache-Ordner eventuell Dateien, die Umlaute beherbergen? Manchmal sogar sehr ungewöhnliche Zeichen, weill Umlaute benutzt wurden? Schau mal nach. Falls Ja – melde Dich bitte nochmal.
Yes – but i guess the tip seems to be obsolete. On former times this happens reproduceable each time that without the space the asterix was lost. But i see that they corrected that behavior now.
the selector for those will be:
#av-burger-menu-ul .avia-menu-subtext { here your css rules for it ! - maybe an !important will be necessary }
on your menu screen – you have at the top right position a fly out called “Screen Options” – click on it – there you have the choice to set up the Menu-Settings Options. Mark “Description” – (https://kriesi.at/support/topic/how-do-you-add-a-portfolio-item-to-the-main-navigation-bar/#post-924489)
if you go no on your Menu – Points you can press that little arrow on the right side. There you have now a description input field.-
This reply was modified 7 years, 7 months ago by
Guenni007.
March 11, 2018 at 10:47 pm in reply to: Best solution for having different color themese on different pages #925286i would have done that via Multi Site Install. One WordPress install – one enfold with activation of Enfold over all “Subsites”
Than you can set for each a color-scheme and for each different css. But – you have to be a bit familiar of doing that – and after having existing content it is a hard work to transfer it – it is possible but laboriousNow : if only these three Sites from the launch page are different – it would be easier to define a whole set of css for those pages
(bollywood-bar; East-India and indian stories)how is your page you have reigstered to inserted.
you don’t need to have http or https on that and the little astereix at the end has to be there to be valid for the whole site !
on that little asterix at the end – it often disappears on input!
just place behind that asterix a space ! on input and press return. – now the asterix is saved !once again – i think it is better to alway have the scripts only on those pages where it is needed –
so take this one only for your home page – so we can make the if clause with is_home()
if it is a special page you can have is_page(123) etc
allthough it is just a very tiny script – it does not have to be loaded on page where it is not neededfunction change_placehoder_txt() { if( is_home( ) ) { ?> <script type="text/javascript"> jQuery('#avia_1_1').attr('placeholder', ' Enter Reg*'); </script> <?php } } add_action('wp_footer', 'change_placehoder_txt');
March 9, 2018 at 6:39 pm in reply to: Combo of Color Section and Advanced Layerslider won't work #924662Or do you mean that little shadow ( by the way it is an inset shadow – should not be outside the box !)
yes – you mean this one here ? https://kriesi.at/support/topic/contact-forms-not-sending-not-in-spam-or-inbox/#post-920309
leider gibts ja keine PN – hab dir mal was ins Private Content geschrieben
March 9, 2018 at 2:58 pm in reply to: How do you add a Portfolio item to the main navigation bar? #924519this image shows you the menu and on top right there is that slide out options dialog. So you might not see it immediately. Just press on “Screen Options” to show – then mark your desired choices
March 9, 2018 at 2:31 pm in reply to: Combo of Color Section and Advanced Layerslider won't work #924503ah ok – i see the thing you are trying to get. But for that you don’t need the slider in a color section.
you have choosen the boxed layout ! and have a body background-color defined. ( guess it is something like: #F3F4F4)
Go and set for your content the same background-color globaly in Enfold Options.-
This reply was modified 7 years, 7 months ago by
Guenni007.
March 9, 2018 at 1:58 pm in reply to: Combo of Color Section and Advanced Layerslider won't work #924482if you are on layerslider Options page you got a shortcode for that slider
you can insert thea shortcode wherever you like (as here in a 1/1 container – but all others are possible too)but regard the settings of the slider – if it is a fullwidth slider it does not show in a 1/1 container distance it is thant full-width.
So here is a working example of a adv. layerslider form template page of kreaturea media. – i only changed it to responsive design. and put a text block on top of the color-section : https://webers-testseite.de/weber/advanced-layerslider-in-color-section/
i tested a few minutes ago the gutenberg plugin.
it runs – but i do not see the benefit of that. The ALB of Enfold is so userfriendly that I can not see the reason for using the plugin.(if debug mode is enabled on Enfold – this block will be seen as .edit-post-layout__editor which we can set to display none.)
it may be a great benefit for those Themes which do not have such layout tools like Enfold ( or other visual layout builders ).
:lol btw : you have to change the reg plate after brexit ;)
-
This reply was modified 7 years, 7 months ago by
Guenni007.
well on cf7 this is possible by setting up the form. and use this shortcode
[text your-name placeholder "Your name here"]
here you can try to influence via Child-theme functions.php:
function change_placeholder_txt() { ?> <script type="text/javascript"> jQuery('#avia_1_1').attr('placeholder', 'Reg'); </script> <?php } add_action('wp_footer', 'change_placeholder_txt');
it works with the image too: but i would take the png without the yello background on the right in the image – just the GB only
if you like to have a bit distance on placeholder text just add some spaces – and to be more specific your selector can be more precise
function change_placeholder_txt() { ?> <script type="text/javascript"> jQuery('#top.home #avia_1_1').attr('placeholder', ' Enter Reg'); </script> <?php } add_action('wp_footer', 'change_placeholder_txt');
see results here (with name as placeholder and image): https://webers-testseite.de/kontakt/
PS: on Safari it works too – but the autofill function does not find an input if placeholder text is different to the standard input name
-
This reply was modified 7 years, 7 months ago by
Guenni007.
this will work too:
#top.home .main_color input#avia_1_1[type="text"] { background-color: #ffcd26 !important; border-color: gray; color: blue; background-image: url(/wp-content/uploads/2018/02/favi.png); background-size: contain; background-repeat: no-repeat; padding-left: 50px; }
don’t know why boardsoft did that auto correction
complete the code above with something like this:
#top.home .main_color input#avia_1_1[type="text"] { background-color: #ffcd26 !important; border-color: gray; color: blue; background-image: url(https://www.wesellanyautopart.com/wp-content/uploads/2018/02/favi.png); background-size: contain; background-repeat: no-repeat; padding-left: 50px; }
can you please change the code to https without s – boardsoflt changes to https automatically ????
WHY?
-
This reply was modified 7 years, 7 months ago by
Guenni007.
March 7, 2018 at 11:07 am in reply to: H1 Tag inside Caption Title for Full Width Easy Slider #922843you mean – substitute h2 to h1 tags ?
see here a workaround: https://webers-testseite.de/edited-enfold-alb-elements/#sliders
these files are edited files of enfold 4.2.5 – i hope that there will be no changings in the meanwhilebut i guess it is than neccessary to update the captions !
the thing has been happend on my webers-testseite.de
so – the admin e-mail is the one i use allways on my pages. – So it has nothing to do with the website domain webers-testseite.de.
maybe that is the reason why.
on contact form 7 there was an input field for “from” and that had to be an e-Mail concerning to the website domain.
For the reply they got an extra input field – that could be any e-mail you like. But it seems to be important that there is a congruency on “sending” e-mail account and domain. The CF7 Mails were allways delivered – the ALB Form not on that setupif you like to have allways the same background-image each page
yes you have to find the page-id and set it as: (here is id: 211).responsive body.page-id-211 { background-image: url(path-to-your-image); }
from a screenshot it is hard to say what it is
edit: by the way if you have a grid like
1/2 1/2 and want to have on totally a 1/2 page filled – you have to put in on the right grid-cell a 1/1 container ;)March 3, 2018 at 8:59 pm in reply to: Problem with header h1-h6 text-transform in the color section. #920899did you try it with !important ?
#team .av-special-heading-tag { text-transform: capitalize !important; font-weight: 300 !important; }
or try ( this is three ids and one class)
#top #wrap_all #team .av-special-heading-tag { text-transform: capitalize !important; font-weight: 300 !important; }
have you a link for it?
or make a screenshot of the whole tree please with the color-sectionMarch 3, 2018 at 8:53 pm in reply to: Problem with header h1-h6 text-transform in the color section. #920897sorry double post
March 3, 2018 at 5:23 pm in reply to: Problem with header h1-h6 text-transform in the color section. #920858how about a screenshot of your ALB Layout – or a better description.
You got one color-section – this color-section has the unique ID : team.
All Headings in that Color-Section should be capitalized.And you tried already:
#team .av-special-heading-tag { text-transform: capitalize; font-weight: 300; }
who knows how to obtain that ? Even on Edge and IE11 ( bad but it works – fixed postitioning is nothing Microsoft can handle)
with clip-path it will be not so simple but it works good – but not on Microsofts Explorers:
https://webers-testseite.de/bernhard/Scroll a bit to see whats happening with scroll content over the header :lol
By the way sometimes it is not synchronized ;) – well it is just an experiment
-
This reply was modified 7 years, 7 months ago by
Guenni007.
there are a lot of shortcodes which are now in a subfolder (iconbox, iconlist, hr etc) i believe on non ftp update these will not be erased – maybe that causes the wsod.
By the way the newest wordpress has an code debugger – which reduces the wsod on functions.php mismatches.
On former time an invalid code or double function names will cause a wsod too. Now you got a warning.hm strange behavior – if i choose the normal form color scheme – the message has been sent ???
dark-transparent – : no sending – even to the wordpess admin e-MailEdit: no – onetime it works – the other time not ??
-
This reply was modified 7 years, 7 months ago by
Guenni007.
some hosters do not accept different adresses than the one set in general options of the wordpress install.
With CF7 – i now there is a different handling – and that works almost without any additional code .
i tried your code :add_filter('avf_form_from', 'avf_form_from_mod', 10, 3); function avf_form_from_mod($from, $new_post, $form_params) { $from = " (Email address hidden if logged out) "; return $from; }
but than the short message isn’t displayed after sending
edit : and it is not sending – even when i use the code here: Link
-
This reply was modified 7 years, 7 months ago by
-
AuthorPosts