Forum Replies Created

Viewing 30 posts - 1,621 through 1,650 (of 9,352 total)
  • Author
    Posts
  • in reply to: Blog next/previous arrows in RTL #986579

    Hi,

    Perfect – glad I could help you :)

    Best regards,
    Dude

    in reply to: Blog next/previous arrows in RTL #986578

    Hi,

    Perfect – glad I could help you :)

    Best regards,
    Dude

    in reply to: Blog next/previous arrows in RTL #986576

    Hi,

    Perfect – glad I could help you :)

    Best regards,
    Dude

    Hi,

    Dbzgl verwende bitte folgenden CSS Code:

    
    @media only screen and (max-width: 767px){
    #top #wrap_all .avia-content-slider .slide-entry-wrap {
        margin-bottom: 0;
    }
    }
    

    Best regards,
    Dude

    in reply to: Searching a website and library catalog #986568

    Hey leblib,

    Unfortunately this requires time-intensive changes to the theme code and the default wordpress search engine. You could try advanced search plugins like WPSearch as a starting point and if necessary you can hire a freelancer here: https://codeable.io/

    Best regards,
    Dude

    in reply to: Blog next/previous arrows in RTL #986556

    Hey rezaies,

    Yes, you can change the order of the arrows by adding this code to your child theme functions.php file:

    
    add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); 
    function enfold_customization_postnav($entries, $settings)
    {
    	$entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	$entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    
        return $entries;
    }
    

    Best regards,
    Dude

    in reply to: Remove Theme by….. #986553

    Hi,

    Great, I’ll close this thread.

    Best regards,
    Dude

    Hey sala9552,

    Das Problem wird durch die unterschiedlich langen Überschriften verursacht. Ich würde daher empfehlen, für die Überschriften eine Minimalhöhe zu setzen, damit der darunterliegende Inhalt immer “auf derselben Höhe” anfängt. Füge hierzu diesen Code in das Quick CSS Feld oder in die Child Theme style.css ein:

    
    #top #wrap_all .all_colors .slide-entry-wrap h3 {
        min-height: 72px;
    }
    

    Natürlich kannst Du den Wert 72 auch durch einen höheren Wert ersetzen (falls zB die Überschriften noch länger werden sollten).

    Best regards,
    Dude

    in reply to: Link Expired #986546

    Hey CanopyLandHoldings!

    Yes please create us a wordpress admin and ftp account and post the login credentials – we’ll look into it asap.

    Regards,
    Peter

    in reply to: Support-Anmeldung gescheitert #986545

    Hi Beat Brugger!

    Can you please post your user name, e-mail address and purchase code you used to register? You can use the private content field to hide the information for other forum users. We’ll then search for your user account. Probably the e-mail address in our database is invalid (i.e. typo).

    Best regards,
    Peter

    in reply to: Article title x2 in Breadcrumb #986538

    Hi,

    Great, glad I could help you :)

    Best regards,
    Dude

    in reply to: Portfolio navigation #986537

    Hi,

    1) You can change the order of the arrows by adding this code to your child theme functions.php file:

    
    add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); 
    function enfold_customization_postnav($entries, $settings)
    {
    	$entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	$entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    
        return $entries;
    }
    

    2) To be honest this is not easily possible because the styling of the arrows is optimized for the far left/right of the browser. If you really want to change the position you can use this code (add it to the quick css field):

    
    #top #wrap_all .avia-post-prev {
        left: 100px;
    }
    
    #top #wrap_all .avia-post-next {
        right: 100px;
    }
    
    

    You can replace 100 with a lower or higher value to change the position (higher values shift the arrows towards the center).

    Best regards,
    Dude

    in reply to: Previous/Next buttons only same category #986532

    Hey!

    I found the culprit – the “Simple Custom Post Order” plugin which runs on your website breaks the get_next_post() and get_previous_post() functions. As soon as I deactivate the plugin the arrows work as intended. I’d suggest to contact the plugin author because both functions are standard wordpress functions and this seems to be a plugin issue.

    Best regards,
    Peter

    in reply to: Article title x2 in Breadcrumb #986525

    Hey!

    I added this code to your child theme functions.php to adjust the breadcrumb:

    
    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
    function avia_breadcrumbs_trail_mod( $trail, $args ) 
    {
    	if ( is_single() ) 
    	{
    		unset($trail[1]);
    	}
    
    	return $trail;
    }
    

    Best regards,
    Peter

    in reply to: Breadcrumb separator ">" is not displayed completely #986523

    Hi Esther!

    Please try this css code – you can add it o the quick css field or child theme style.css file:

    
    #top #wrap_all .breadcrumb .sep {
        width: 10px;
    }
    

    Cheers!
    Peter

    in reply to: How to make prices bigger in product masonry #986522

    Hi,

    Please try to clear the browser cache. If this doesn’t work go to Enfold > Theme Options > Performance and set the “CSS file merging and compression” setting to “Disable” (this will clear the css cache).

    Best regards,
    Dude

    in reply to: How to remove breadcrumbs from mobile only #986521

    Hey DROR,

    You can use this code to hide the breadcrumb on mobile devices – add it to the child theme style.css file or to the quick css field:

    
    @media only screen and (max-width: 767px){
    #top #wrap_all .breadcrumb {
        display: none;
    }
    }
    

    If you want to hide the breadcrumb on tablets you can replace 767px with a higher value like 1024px.

    Best regards,
    Dude

    Hey elbnetz,

    Please check the performance settings (Enfold > Theme Options > Performance). Try to set the option “Javascript file merging and compression” to “Disable” and make sure the option “Load jQuery in your footer” is not checked.

    Best regards,
    Dude

    in reply to: Overlay mit Bild und Text über Slider #986502

    Hey tinschn,

    Mir ist jedenfalls ein Syntax-Fehler in deinem Code aufgefallen. CSS-Klassen verwenden einen Punkt ( . ) als Selektor und nicht eine Raute ( # ).

    Versuche einmal folgenden Code:

    
    .test1 {
    background-color: transparent!important;
    margin-top: -150px;
    margin-left: -150px;
    z-index: 55;
    border: none!important;
    }
    

    Best regards,
    Dude

    in reply to: Send filled in contact form via E-mail #986499

    Hi,

    You can add it to enfold/functions.php – just place it at the end of the file.

    Best regards,
    Dude

    in reply to: One page checkout woocommerce plugin #986496

    Hi,

    Unfortunately you can’t comment this line out with a child theme. You must go through all filters/actions registered in enfold\config-woocommerce\config.php and use remove_action or remove_filter to remove the default Enfold filters/actions. However probably you don’t need to remove all filters/actions but just some of them which conflict with your plugin.

    Reference:
    https://codex.wordpress.org/Function_Reference/remove_filter
    https://codex.wordpress.org/Function_Reference/remove_action

    Best regards,
    Dude

    in reply to: Cant add the Enfold theme to WordPress #986089

    Hey ellenyoung,

    Unfortunately we’re not able to help you if you can’t use ftp to install the theme (there’s no other solution if wordpress uploads don’t work). We can’t even check the wp-config.php settings without ftp. I’d suggest to contact the web host to get ftp access to your server or to ask the web host support to install the theme for you (maybe with ssh or another protocol).

    Best regards,
    Dude

    Hey dasibaer!

    Könntest Du das näher ausführen – welche Fehler treten auf?

    Best regards,
    Peter

    in reply to: Multilingual web #986085

    Hi Jiří Najman!

    Yes this is possible. We recommend to use WPML for multilingual websites with Enfold.

    Cheers!
    Peter

    in reply to: Previous/Next buttons only same category #986083

    Hey!

    Please try this code to limit the next/prev links to the same category/term:

    
    add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); 
    function enfold_customization_postnav($entries, $settings)
    {
    	if($settings['type'] == 'portfolio')
    	{
    		$settings['same_category'] = true;
    
    		$entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    		$entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	}
    
        return $entries;
    }
    

    I tested it on my website and it worked.

    Regards,
    Peter

    in reply to: Use main category for portfolio permalink #986027

    Hey shermski,

    I didn’t test the plugin but you can try https://wordpress.org/plugins/remove-taxonomy-base-slug/ to remove the taxonomy slug (in this case “portfolio-items”) from the urls.

    Best regards,
    Dude

    in reply to: partnership with hubspot? #986023

    Hi,

    Basilis forwarded your request to Kriesi. Kriesi is very busy at the moment and I can’t promise he’ll reply soon.

    Best regards,
    Dude

    in reply to: Instagram embed DSGVO-konform? #986022

    Hey royaltask,

    Wir sind keine Rechtsanwälte und können daher keine Rechtsberatung bieten. Alle Angaben sind daher ohne Gewähr und allenfalls rechtlich zu überprüfen. Mit dem DSGVO-Update haben wir eine Option beim Instagram-Widget eingeführt, um die Daten von Instagram am Server zu cachen. Hierdurch werden unserer Ansicht nach keine personenbezogenen Daten des Website-Besuchers an Instagram übertragen (weil nur der Server mit Instagram kommuniziert) und der Einsatz des Widgets sollte datenschutzrechtlich unbedenklich sein. Um diese Option zu aktivieren gehe auf die Widget-Seite, öffne die Optionen für das Instagram-Widget und wähle bei “Location of your photos or videos:” die Einstellung “Cache on your server – no instagram connection needed on pageload” aus der Liste aus.

    LG,
    Dude

    Hi,

    Um ehrlich zu sein, konnte ich den Fehler auf den ersten Blick auch nicht finden. Ich bekomme auf der Theme Option Seite die Fehlermeldung “Uncaught ReferenceError: jQuery is not defined”, was darauf hindeutet, dass das jquery Skript nicht richtig geladen wird. Ich würde Folgendes probieren:

    1) WordPress Dateien erneut hochladen – vielleicht passt da etwas nicht.
    2) Enfold Dateien erneut hochladen – idealerweise im zip Format und dann entpacken, um Übertragungsfehler oder Schreibrechtefehler zu vermeiden.
    3) Notfalls die Theme Optionen zurücksetzen, um Datenbank-/Importierungsfehler ausschließen zu können.

    LG,
    Dude

Viewing 30 posts - 1,621 through 1,650 (of 9,352 total)