Forum Replies Created

Viewing 30 posts - 871 through 900 (of 9,352 total)
  • Author
    Posts
  • in reply to: reference a custom class within another custom class #1003536

    Hi,

    This is possible. First go to Enfold > Theme Options > Layout Builder a tick the “Show element options for developers” checkbox.

    Afterwards go to the advanced layout builder. There you can set a custom id for each color section (i.e. footer_section like in this screenshot: (Email address hidden if logged out) &Expires=1535798957&Signature=Sx8FbgjA59bXm6umPVTn7Ew6rdz2FBV2zKYdC6Xqz9%2BYrDBT7VRrhj9yYA7PWNl%2BdEqEBMZAZ4tfEa1NA3y7CHjRluSg7rZHr6XzqaaJxees7rRTFAEFjNYgmvDd8sHZ81R8skWYWibDwx2S2e4%2BInj36GndeE%2BkEDh5nel1JjvRCNgOkhDKw%2BRYc9OXnyLrnLP%2FdgcXnkZzzGYT7JsdvXJO0y7TyNiNz4anpHp0Tuq%2FeyO85gj5p%2Bf5kCC63H3S1l%2FohWvebC6FAzMm8s%2BWzmOGOvegAUq9oxDlKpBWKbeMNYDleuHN2o7rlRbjiOT3OLCu03zOYL9MjXJcgT83Qg%3D%3D&md5=38863184e64f4b331dba54773139694b&NOT_A_LINK”>Link).

    You can also set a custom css class for all elements inside the section – you just need to scroll down to the “Custom Css Class” settings field (Screenshot: http://www.clipular.com/c/6711384096899072.png?k=RrMoKtXRISy07PSweKZzcezN7Dk ). Please insert all ids or classes WITHOUT css selectors, you don’t need to add # before ids or . before classes (note this only applies to the layout builder setting fields, not to the css code you’re using to style these elements).

    Best regards,
    Dude

    in reply to: Change woocommerce price position on single product page #1003526

    Hi!

    1) You can try this code to display the price near the quantity input field (maybe it requires additional styling):

    
    function move_price(){
      ?>
      <script>
      jQuery(window).load(function(){
    jQuery( '.single-product.woocommerce-page' ).each(function() {
    jQuery( this ).find( '.av-woo-purchase-button .woocommerce-Price-amount' ).insertAfter( jQuery(this).find('.quantity') );
    });
    });
      </script>
      <?php
      }
      add_action('wp_footer', 'move_price');
    

    2) This would require more work and is beyond the scope of our support forum. Please hire a developer if you need this feature.

    Cheers!
    Peter

    in reply to: Show logo when scrolling #1003521

    Hi,

    Please try this code instead:

    
    #top .av_header_transparency .logo {
        display: none;
    }
    

    It will hide the logo if the menu is transparent. As soon as the user starts to scroll the logo will be displayed.

    Best regards,
    Dude

    in reply to: Featurebeschreibung #1003518

    Hey Alexander Feldt,
    Eine Funktionsbeschreibung findet sich hier: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 und in der Dokumentation: https://kriesi.at/documentation/enfold/

    Darüber hinaus können die Funktionen auf der Demoseite hier: https://kriesi.at/themes/enfold-overview/ ausprobiert werden.

    WPML wird von uns unterstützt. Die anderen Funktionen müssten durch Drittanbieter-Plugins ergänzt werden, da Enfold kein Reservierungssystem anbietet.

    LG,
    Peter

    in reply to: Need your help #1003509

    Hi,

    Best regards,
    Dude

    in reply to: No shop-filters in sidebar #1003507

    Hi,

    Please move your local development website to a live server and post the login credentials. I can’t reproduce the issue on my test servers (local or online) and there’s no obvious reason why the widget doesn’t work.

    Best regards,
    Dude

    in reply to: Customized Icons – Flaticon #1003505

    Hey KaISBC,

    Yes you can only load packs from Flaticon. Enfold does not support all font packs from flaticon but just those packs which contain an icon font. If you take i.e. this pack: https://www.flaticon.com/packs/multimedia-collection you’ll notice the zip file contains a folder called “font” (screenshot: https://imgur.com/pus5DFc ). Other icon packs (i.e. this one: https://www.flaticon.com/packs/web-development-24 ) won’t work because they do not contain font files.

    Best regards,
    Dude

    in reply to: Enfold live search not compatible with custom roles? #1003503

    Hey rup!

    We do not limit the ajax search to certain user roles or capabilities. We also use the wp_ajax_nopriv_(action) hook to fire the ajax call for users which are not logged in (and have no capabilities at all – see https://codex.wordpress.org/Plugin_API/Action_Reference/wp_ajax_nopriv_(action) ). I’m not aware of any limitations regarding the capabilities or user role; you can check the code in enfold\functions-enfold.php starting with line 211.

    I’d recommend to deactivate all plugins – maybe a plugin blocks the access to the ajax api. If this doesn’t help I’d recommend to stick with the default wordpress user roles or to hire someone to debug the code for you.

    Best regards,
    Peter

    in reply to: Portfolio entries #1003499

    Hi,

    I fixed it now. I replaced this code in portfolio.php:

    
    
    //postk puplic funktion for search and filter
    			public function use_search_and_filter_query($query)
    			{
    			   $this->entries = $query;
    			}
    

    with

    
    		//function that allows to set the query to an existing post query. usually only needed on pages that already did a query for the entries, like taxonomy archive pages.
    		//Shortcode uses the query_entries function above
    		public function use_global_query()
    		{
    			global $wp_query;
    			$this->entries = $wp_query;
    		}
    
    //postk puplic funktion for search and filter
    			public function use_search_and_filter_query($query)
    			{
    			   $this->entries = $query;
    			}
    

    and added this code to the child theme functions.php:

    
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths){
    	$template_url = get_stylesheet_directory();
    	array_unshift($paths, $template_url.'/shortcodes/');
    	return $paths;
    }
    

    Best regards,
    Dude

    in reply to: Apply CSS to full width submenu ONLY when it goes sticky #1003492

    Hi,

    Thanks tjswarbs78 for helping us out. Scott if you need further assistance please post a link to your website and I’ll check the code of the menu.

    Best regards,
    Dudee

    in reply to: Enfold and Thrive Leads #1003488

    Hey kpenner36,

    Can you please post a link to your enfold website. When I visit the website I just see a landing page (with the headline “Get a free night stay at ….”) which does not run Enfold.

    Best regards,
    Dude

    Hi,
    Please try to decrease the line-height with this css code:

    
    #top #wrap_all #searchsubmit {
        line-height: 28px;
    }
    

    Best regards,
    Dude

    in reply to: No shop-filters in sidebar #1003465

    Hi,

    Please make sure you’ve selected one or more attributes for your products and set up attribute values (screenshot: http://www.clipular.com/c/4668016026189824.png?k=KCXO3BYiwN6EXyQImrULbC6gJj4 ). The attribute filters won’t work if no attributes/values are assigned to products.

    Best regards,
    Dude

    in reply to: Column with same height pictures inside #1003459

    Hi,

    I think the columns element is not the best solution in this case. I’d recommend to use the “Grid Row” element (Layout Elements) and to set up a grid with two columns. Then set a background image for each column and use the minimum height setting to set the image height. The size of the columns controls the image width.

    Best regards,
    Dude

    in reply to: Products filter widget not appearing #1003454

    Hi,

    1) You just need to set a minimum height value for the container like:

    
    #top .inner_product_header {
        min-height: 98px;
    }
    

    The min-height value depends on the length/size of the product titles but 98px gave me good results on your homepage.

    2) Please use this css code to move the password link to the bottom:

    
    #top .woocommerce .login .lost_password {
        top: 0;
    }
    

    Best regards,
    Dude

    in reply to: PROBLEMS WITH FULL WIDTH SLIDER #1003438

    Hi,

    Please excuse the late reply. To be honest I think the logo resizes because of the mobile menu (burger menu) which is used between 480 and 767px screen width.

    You can use following css code to resize the logo:

    
    @media only screen and (max-width: 767px){
    .responsive .logo img {
        max-height: 58px!important;
    }
    }
    

    If you want to align the logo with the menu icon use this css code:

    
    @media only screen and (max-width: 767px){
    .responsive .logo img {
        max-height: 58px!important;
    }
    
    .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
        margin-top: 10px;
    }
    
    #header_main {
        padding-top: 18px;
    }
    }
    

    You can add the code snippets to the child theme style.css or the quick css field.

    Best regards,
    Dude

    in reply to: Changing HTTP to HTTPS #1003435

    Hey jayflavs!

    Try to add this code to your .htaccess to redirect all requests to the new https url:

    
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    

    If this doesn’t help try to download and install the php script from here: https://interconnectit.com/products/search-and-replace-for-wordpress-databases/

    Use ftp to upload it to the main wordpress directory (where the wp-content, wp-admin, etc. folders are located). Then replace all occurrences of the old http:// url with your new https:// url.

    Regards,
    Peter

    in reply to: Page as Footer Problem #1003208

    Hey Christian,

    Please try following:

    1) Add a custom id to the footer section (i.e. footer_section – screenshot: http://www.clipular.com/c/6030402066841600.png?k=TWI-eNSNopwM1gnnw1q-7ZEcNI4 )

    2) Then add this css code to the quick css field:

    
    #footer_section + div {
        display: none;
    }
    

    (you need to replace footer_section with your custom id)

    Best regards,
    Dude

    Hi,

    Sehr gut, schön dass ich helfen konnte :)

    LG,
    Dude

    Hi,

    Great, glad it works now :)

    Best regards,
    Dude

    Hi,

    Ja sicher – verändere einfach beim Code den ich oben geschrieben habe folgende Zeile:

    
    Plugin Name: Enfold Anpassungen
    

    zb durch

    
    Plugin Name: Enfold Anpassungen Menüpunkt XY
    

    Du kannst auch neuen Code zu bestehenden Plugins hinzufügen, indem Du diesen einfach am Ende der Datei anhängst.

    Best regards,
    Dude

    in reply to: Google Maps as Store Locator #1003196

    Hi,

    I’ll leave this thread open in case you need further assistance :)

    Best regards,
    Dude

    in reply to: Google Maps as Store Locator #1003184

    Hey!

    To be honest I didn’t test recent versions of the plugin with Enfold. However it worked in the past and I’m not aware of incompatibility issues. I’d recommend to try the free version of the plugin: https://wordpress.org/plugins/wp-google-maps/

    Regards,
    Peter

    in reply to: Hierarchy in categories (widget) #1003140

    Hi,

    Glad I could help you :)

    Best regards,
    Dude

    Hi,

    I fixed this error with following code now:

    
    
    /* fix 404 pages with wpml redirection */
    add_action( 'template_redirect', 'redirect_404_to_any_url' );
    function redirect_404_to_any_url() 
    {
        if(is_404())
        {
        	$error404_page = avia_get_option('error404_page');
        	$url = '';
    
        	if($error404_page)
        	{
        		$error404_page = apply_filters('wpml_object_id', $error404_page, 'page', TRUE);
        		$url = get_permalink($error404_page);
        	}
    
        	if($url) wp_redirect($url); 
    
    		exit;
    	}
    }
    
    function av_error404_wpml($posts)
    {
    	return $posts;
    }
    
    

    So basically I just added:

    
    function av_error404_wpml($posts)
    {
    	return $posts;
    }
    

    which overwrites our wpml 404 function. Afaik our dev already fixed some incompatibility issues with the latest wpml version and these fixes should be part of the next theme update.

    Best regards,
    Dude

    in reply to: contacts form change #1003130

    Hi,

    Great, glad I could help you :)

    Best regards,
    Dude

    in reply to: Hierarchy in categories (widget) #1003129

    Hi,
    This is also possible please try this code:

    
    #top .widget ul li {
        font-weight: bold;
    }
    
    #top .widget ul.children li {
        font-weight: normal;
    }
    

    Best regards,
    Dude

    in reply to: Polylang Titles, Extract, Comments, Tags, Category #1003126

    Hi,

    Glad you found a solution :)

    Best regards,
    Dude

    in reply to: Error – class-avia-font-management-base.php on line 429 #1003116

    Hi,

    @Munford
    – please create a new thread – we’ll help you there.

    Best regards,
    Dude

    in reply to: Velvet Version 1,5 #1003114

    Hey Birgit Schümann,

    Wenn “plötzlich” Fehler auftreten liegt es meist an WordPress Plugins. Versuche einmal alle Plugins zu deaktivieren und überprüfe danach, ob der Fehler weiter besteht. Falls nicht, aktiviere die Plugins wieder nacheinander und siehe nach, welches Plugin den Fehler auslöst.

    LG,
    Peter

Viewing 30 posts - 871 through 900 (of 9,352 total)