Forum Replies Created
-
AuthorPosts
-
May 6, 2020 at 8:45 am in reply to: Recaptacha JS files to load only on pages which use Forms #1210251
Why do you change the name of the filter with the same functionality and – yes, it is now no longer “disable” but “prohibited” ?
That you generally wanted to change the name of the filter to avf- is understandable, but that was already given here.
I have to go and check now my installations, where I used the old filter name.To those who are interested to use this filter with contact-form-7 too:
that one line :
$prohibited = ( false !== strpos( $content, '[av_contact ' ) ) ? false : true;
has to be replaced by:
$prohibited = ( false !== strpos( $content, '[contact-form-7 ' ) || false !== strpos( $content, '[av_contact ' ) ) ? false : true;May 5, 2020 at 6:12 pm in reply to: How to change -Tag of post title on Category List + Changing -Tag #1210046Das hat schon seinen Grund weshalb der andere Weg besser wäre. Denn jQuery ist Clientseitig. Dadurch sehen die Bots immernoch die alten tags!
Wenn man es vor der Entstehung also regeln könnte wäre es denke ich besser.________
There is a reason why the other way would be better. Because jQuery is client-side. So the bots still see the old tags!
So if you could fix it before it is created I think it would be better.May 5, 2020 at 5:54 pm in reply to: How to change -Tag of post title on Category List + Changing -Tag #1210038i had to look if the filter : avf_customize_heading_settings will work on this too – then this would be a better way!
Or : avia_default_title_filteryou find the place to influence on helper-post-format.php line 60
$default_heading = is_singular() ? 'h1' : 'h2';May 5, 2020 at 5:43 pm in reply to: How to change -Tag of post title on Category List + Changing -Tag #1210033Bei der Seite gehe ich jetzt mal davon aus, dass ich die Antwort in deutsch geben kann.
ich hatte da mal ein kleines script geschrieben, welches unter beibehaltung aller Attribute und Klassen das Tag ändert.
Je spezifischer die Quelle gesetzt ist um so selektiver arbeitet das auch.Kleiner Denkanstoß: auch wenn es eventuell oldfashioned ist – vermeide ich persönlich das vorhandensein von mehr als einer h1 pro Seite.
Nun zu der Umsetzung – dies in die child-theme functions.php:function replace_tags_with_tags(){ ?> <script> (function($) { function replaceElementTag(targetSelector, newTagString) { $(targetSelector).each(function(){ var newElem = $(newTagString, {html: $(this).html()}); $.each(this.attributes, function() { newElem.attr(this.name, this.value); }); $(this).replaceWith(newElem); }); } replaceElementTag('.entry-content-header h2.entry-title', '<h1></h1>'); // weitere Zeilen anfügen durch semicolon getrennt replaceElementTag('.category-term-description p', '<h6></h6>'); }(jQuery)); </script> <?php } add_action('wp_footer', 'replace_tags_with_tags');Durch den Kommentar siehst du wie du weitere Tag Ersetzungen erreichen kannst.
Yes – it is lost in translation :) the formal is identical to the informal
the term : Entschuldigung, aber kein Eintrag erfüllt Deine Suchkriterien is on 4.5.7 : Entschuldigung, aber kein Eintrag erfüllt ihre Suchkriterienhi Ismael – does it work on default with shortcodes in the menu – or do we need to activate the shortcode option by:
add_filter('wp_nav_menu_items', 'do_shortcode');
Edit: seems to work without extra activation.A new german menu : Link
I can say this, I’m German. ;)I can’t help you here anymore. I think a mod should log in to see why the aside is in the wrong container.
I changed on that page above ( private Content ) now manually to a date sort which works – but that would be nice to have a filter here too for orderby in combination with looping in same category.
i try to use my old plugin for that “intuitive custom post order” – and now a advice from Günter: “Simple Custom Post Order” – it works great – but not on looping the prev – next – for the first in the order to go back to the last.
https://kriesi.at/support/topic/is-it-possible-to-loop-the-post-navigation/#post-1096125
It would be nice to have here an orderby option too!
Falls es darum geht, die Sortierreihnfolge zu ändern (z.B. von post date auf title) – das geht momentan nicht.
even if i change in functions-enfold.php line 726 the orderby to menu_order it does not have any effect.
-
This reply was modified 5 years, 7 months ago by
Guenni007.
Is there a page where we can see the intention?
If you can’t make the page public, can we see it on the Enfold demo pages?maybe you have done something wrong here: https://kriesi.at/support/topic/category-product-filter/#post-1000181
hm strange because on woocommerce the aside is on default in the container.

Don’t know where the mismatch comes from ?
But your “aside” is outside that container:

Have you used some hooks to influence some woocommerce settings in your functions.php?-
This reply was modified 5 years, 7 months ago by
Guenni007.
It is really fun to share ones knowledge here. ;)
The reason why i ask for block editor ( Gutenberg ) is that some other users here got troubles in using both Enfold ALB and Gutenberg.
It seems that some users got the same behavior on having a scroll down when dragging the element down to the place where they want to go.
https://kriesi.at/support/topic/how-to-hide-shortcode-section-above-avia-layout-builder/#post-1209040If you are having problems with scrolling down below the fold when dragging an element and the Block Editor is active, then please try adding this to your functions.php file:
They have extra shortcodes visible in the frontend and they could not scroll down in editor.
So again : did you use the block-editor too on your enfold options dialog?

Next suggestion : are you using block editor on enfold options?
zunächst ist dein Header ja fixiert – er shrinkt halt nur. Ausserdem hast du ja wohl dieses Headerlayout in der Seite gewählt:
transparent oder ich schätze – eher glassy style. Das geht auf der Seite wo du im Editor Modus bist – rechte Leiste : dort steht irgendwo diese Option zur Verfügung.
Wenn das aber so gewollt ist, und du nach dem shrinken allerdings nur einen voll weißen Header haben möchtest musst du ein wenig Quick css dazu setzen um den Header HIntergrund zu setzen..header-scrolled .header_bg { opacity: 1 !important; }is it that you can not drag them or not drop them.
The reason for my question is that if you can’t drag, then it’s probably a deeper problem.
If you can’t place it everywhere, there can be several reasons for that.
One of them is that not all elements can be placed in every other element. There are elements that are pronounced drag and drop elements – others are not. For example, you cannot place 1/2 column into a 1/1 column.For example, I can’t think of any element in the “Content Elements” tab that allows you to place other elements in there.
Maybe you first describe what you want to achieve.
kannst du mal das hier ausprobieren: https://kriesi.at/documentation/enfold/icon/#troubleshoot
Meist werden die Hoster wohl eine Apache Server haben, deshalb wäre wohl dann die erste Lösung angebracht.
die .htaccess Datei ( mit dem . vor dem namen und ohne Dateityp) befindet sich im Root Verzeichnis deiner Installation.
Die Ftp Programme zeigen nicht immer in den Standardeinstellungen diese versteckten Dateien an. Das kann man in den Einstellungen aktivieren. ( bei filezilla ist das über: Server/Auflistung versteckter Dateien erzwingen).
Normalerweise sieht so eine Standard .htaccess Datei in etwa so aus:# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPressda fügst du dann bitte nichts dazwischen ein sondern ausserhalb dieser Anweisung gerne auch drüber:
<FilesMatch ".(ttf|otf|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch>bitte richtig verstehen nur als beispiel , was bei dir also drin steht könnte anders aussehen – bitte nicht verändern – nur den Code hinzufügen
thanks Ismael -but it wasn’t so much a question of whether it would work this way, but rather if it would be a useful setting that could be included in one of the next updates. The best way to do this is to have an input array in the sliders.
I can work it out now – but then I would have to consider repeating it every time I update.Versuche mal das hier in deiner Child-Thema functions.php:
Pass nur auf, deine Anführungszeichen waren nicht geeignet zur Übernahme in die functionsfunction add_script_to_head(){ ?> <script type="module" src="XXXXXX"></script> <?php } add_action('wp_head', 'add_script_to_head');i will try that !
how about the influence on transitionSpeed via child-theme functions.php ?
The animation method and intervall can be influenced the way above. – why not the speed:lol – btw: this is only seen if you use the high resolution magic mouse. –
in that moment my magic mouse is not charged – so i use a logitech wheel mouse – no effect is seen ???
however – the workaround on top is a good solution –
i change now the setting for the testpage.-
This reply was modified 5 years, 7 months ago by
Guenni007.
try:
#footer .social_bookmarks { display: inline-flex; }and if you like to get rid of the border and colorize the icons to white:
#top #footer .social_bookmarks li { border-right: none !important; } #top #footer .social_bookmarks li a { color: #fff !important; }Enable the debug mode for Enfold: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
After that you got under each page/post generated with the Advanced Layout Builder an additional field with all the shortcodes enfold generates for the page content.
You can copy/paste the whole thing and tranfer to another enfold installation – same way : create that new page – goto advanced layout builder and paste that code to the analog field – save page.
_____________
Or for newest enfold:
save that page as template ( give to it a unique name ).
Go to Enfold Options: Import/Export – Export Layout Builder Templates –
This file could be imported on the other installation. You will then have under templates these saved pages.April 28, 2020 at 10:20 am in reply to: Change heading for entry title for category and tags page from H2 to H3 #1207731Thats why i asked for the layout – it is possible to change the headings tag on all these without having edited ALB elements.
but i had to know the selectors to give advice.-
This reply was modified 5 years, 7 months ago by
Guenni007.
A lot of people use the 100% jpg option which is not necessary.
On Photoshop i use 35 til 55% jpgs – depends on the motive. For contrast rich photos the 35% is often ok. for monochromatique or fine gradients ( like skin tones ) there must be a bit more. -
This reply was modified 5 years, 7 months ago by
-
AuthorPosts


