Forum Replies Created

Viewing 30 posts - 1,951 through 1,980 (of 9,352 total)
  • Author
    Posts
  • in reply to: Single Portfolio: 2/3 Gallery – Can't find it? #322614

    Hey!

    Great, glad you found it :)

    Cheers!
    Peter

    Hi Antonio!

    No, this feature is not implemented yet. We concentrated our efforts on the “Event management system” implementation. However you can download free mailchimp plugins here: https://wordpress.org/plugins/search.php?q=mailchimp

    Best regards,
    Peter

    in reply to: Page Speed #322612

    Hi!

    Great :)

    Cheers!
    Peter

    in reply to: Adding Text On Top and Bottom OUTSIDE Of Site Container #322604

    Hey!

    Please follow Ismaels instructions here: https://kriesi.at/support/topic/adding-text-on-top-and-bottom-outside-of-site-container/#post-320900 and post a link to your website – we’ll investigate it with the developer tools.

    Cheers!
    Peter

    in reply to: multisite share media #322601

    Hi!

    I’m pretty sure our avia builder media uploader is not compatible with http://wordpress.org/plugins/network-shared-media/ and you can’t use it with Enfold.

    Best regards,
    Peter

    in reply to: Avia Builder is not working again #322598

    Hey avivitgolanschutz!

    This CSRF_TOKEN value is not added by wordpress or our theme. You need to contact the server administrator/host and ask him to remove this token code. Probably you need to tweak the server configuration somehow.

    Regards,
    Peter

    in reply to: Portfolio Ajax Preview #322597

    Hey!

    I marked this thread for Kriesi and asked him to comment on this issue.

    Cheers!
    Peter

    in reply to: WooCommerce Shop Catalog Image Borders #322596

    Hi slui!

    1) Use this code to change the border color of the preview image container:

    
    .main_color .thumbnail_container img, .main_color div.thumbnail_container{
    border-color: #444;
    }
    

    2) This code will change the style of the product name + price container:

    
    #top .inner_product_header{
    border-color: #444;
    }
    

    3) This code will change the border of the buttons bellow the product name/price:

    
    #top #wrap_all .avia_cart_buttons{
    border-color: #444;
    }
    

    Regards,
    Peter

    in reply to: Accordion Style #322595

    Hey!

    1) Use this code to change the style of the title:

    
    .togglecontainer .single_toggle:first-child .toggler, .togglecontainer .taglist + .single_toggle .toggler {
    font-family: 'Kreon', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1em;
    }
    

    3) Try this code instead:

    
    #top #wrap_all .main_color .toggler.activeTitle {
    background-color: red;
    color: blue;
    }
    

    Cheers!
    Peter

    in reply to: Variable aus der team.php in anderem shortcode auslesen #322594

    Hey!

    Nein, sollte eigentlich so funktionieren. Wenn es nicht geht müsst ihr einen Entwickler damit beauftragen, der sich den Code näher ansieht, debugged und dann eine Lösung findet.

    Best regards,
    Peter

    in reply to: Lizenz übertragbar #322379

    Hey fwbecker!

    Ja, dies ist ohne Probleme möglich. Löscht zuerst die Lizenz von der alten Webseite. Dann aktiviert dieselbe Lizenz auf der neuen Webseite.

    Regards,
    Peter

    in reply to: Page Speed #322377

    Hi Robyone925!

    Yes, you can use plugins like: https://wordpress.org/plugins/bwp-minify/ and https://wordpress.org/plugins/wp-super-cache/ to improve the page speed. Kriesi also uses them on the demo website.

    Regards,
    Peter

    Hi!

    Great, glad it works now :)

    Regards,
    Peter

    in reply to: Length of description in preview #322372

    Hey!

    Great, glad the code worked for you :)

    Best regards,
    Peter

    in reply to: Recommend a server space #322371

    Hey potentialindia!

    We are not affiliated with any host provider and we can’t recommend a certain provider. Kriesi and I use a German server provider (All-Inkl Hosting) to host our websites, including the theme demo page, etc. and we would notice it immediately if our themes are incompatible with the server configuration of this host provider…

    Cheers!
    Peter

    in reply to: Display Date and Comment Count Only in Blog Feed #322294

    Hi indy1003!

    Tbh I didn’t test the code but it should work . insert it at the end of enfold/functions.php or your child theme functions.php:

    
    // add custom feed content
    function add_feed_content($content) {
    	if(is_feed()) {
    		global $post;
    		$date =  get_post_field('post_date', $post->ID);
    		$comments =  get_post_field('comment_count', $post->ID);
    		if($comments > 1)
    		{
    			$comments .= ' comments';
    		}else if($comments == 1){
    			$comments .= ' comment';
    		}else{
    			$comments = 'No comments';
    		}
    		if($date) $content .= '<p>Published: '.$date.'</p>';
    		if($comments) $content .= '<p>'.$comments.'</p>';
    	}
    	return $content;
    }
    add_filter('the_excerpt_rss', 'add_feed_content');
    add_filter('the_content', 'add_feed_content');
    

    Cheers!
    Peter

    in reply to: Parse error: syntax error, unexpected $end #322280

    Hi Jesse!

    The syntax error is triggered by a file which is not part of the theme code ( wp-admin/custom-header.php ) and tbh I’m not sure why it doesn’t work. I recommend to re-install the latest version of wordpress with ftp. You can download the latest version here: https://wordpress.org/download/

    Cheers!
    Peter

    in reply to: Move the "Language Selector" to another place… #322278

    Hey victor!

    Open up wp-content/themes/enfold/includes/helper-main-menu.php and replace:

    
    						if(!empty($nav) || apply_filters('avf_execute_avia_meta_header', false))
    						{
    							echo "<nav class='sub_menu' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
    							echo $nav;
    		                    do_action('avia_meta_header'); // Hook that can be used for plugins and theme extensions (currently: the wpml language selector)
    							echo '</nav>';
    						}
    						
    						
    						//phone/info text	
    						$phone			= $headerS['header_phone_active'] != "" ? $headerS['phone'] : "";
    						$phone_class 	= !empty($nav) ? "with_nav" : "";
    						if($phone) 		{ echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>"; }
    

    with

    
    						
    						
    						//phone/info text	
    						$phone			= $headerS['header_phone_active'] != "" ? $headerS['phone'] : "";
    						$phone_class 	= !empty($nav) ? "with_nav" : "";
    						if($phone) 		{ echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>"; }
    
    						if(!empty($nav) || apply_filters('avf_execute_avia_meta_header', false))
    						{
    							echo "<nav class='sub_menu' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
    							echo $nav;
    		                    do_action('avia_meta_header'); // Hook that can be used for plugins and theme extensions (currently: the wpml language selector)
    							echo '</nav>';
    						}
    

    Best regards,
    Peter

    in reply to: Missing Portfolio Entries with Enfold/WPML #322276

    Hi!

    If you want to remove the default theme flags you just need to insert this code into the enfold/functions.php file:

    
    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
    }
    

    Best regards,
    Peter

    in reply to: Post Navigation – Woocommerce single products page #322274

    Hey!

    The code I posted here: https://kriesi.at/support/topic/post-navigation-woocommerce-single-products-page/#post-322265 will only remove the next/prev post links from the product pages.

    We don’t plan to fix this issue because we use the standard wordpress functions and in our opinion woocommerce should better integrate with wordpress. Thus it’s up to the WooCommerce devs to add proper support for the http://codex.wordpress.org/Function_Reference/next_post_link and http://codex.wordpress.org/Function_Reference/previous_post_link functions.

    Best regards,
    Peter

    in reply to: WordPress SEO crash #322271

    Hey!

    I’m pretty sure it was the memory issue: https://kriesi.at/support/topic/wordpress-seo-crash/#post-317533

    Cheers!
    Peter

    in reply to: Google Map CLuster #322267

    Hi!

    Yes, I couldn’t get it to work too. I’ll pass this to Kriesi because I don’t have enough time to tinker around with the google maps api.

    Best regards,
    Peter

    in reply to: Post Navigation – Woocommerce single products page #322265

    Hey!

    Unfortunately you can’t exclude products which are hidden from the catalog. We use standard wordpress functions to query the next/previous posts and these functions don’t care about the WooCommerce catalog settings. You can only remove the next/prev product links at all if you don’t want that the user can access product pages which are hidden from the catalog. You can use this code:

    
     function category_specific_post_nav($settings)
      {
          if(is_product()) $settings['is_fullwidth'] = true;
          return $settings;
      }
    
      add_filter('avia_post_nav_settings','category_specific_post_nav', 10);
    

    Cheers!
    Peter

    in reply to: Secondary menu anpassen #322260

    Hey!

    1) Mir ist keine Lösung schnelle Lösung betreffend Zentrierung bekannt. Es geht sicher irgendwie, aber das müsste sich ein Freelancer ansehen, weil wir nur bei leichten und schnellen Anpassungen weiterhelfen können.

    2) Wie kann ich denn das main menu zentrieren? Ich benutze den large header fixed shrinking ohne Titel/breadcrumbs?

    Bitte richte mir einen Admin Account ein und ich sehe mir die Sache an. Ich weiß derzeit auch nicht, warum sich die breadcrumb auf das Main Menu auswirkt.

    3) Die Farbe im Secondary Menu könnt ihr mit diesem Code:

    
    #top #wrap_all .header_color .sub_menu ul li a{
    color: #333;
    }
    

    Wenn ihr auch die Hover Farbe verändert wollt, verwendet auch diesen Code:

    
    #top #wrap_all .header_color .sub_menu ul li a:hover{
    color: #333;
    }
    
    

    4) Um den Unterstrich zu entfernen verwendet diesen Code:

    
    #top #wrap_all .header_color .sub_menu ul li a:hover, #top #wrap_all .header_color .sub_menu ul li a, #top #wrap_all .header_color .sub_menu ul li{
    text-decoration: none;
    }
    

    Cheers!
    Peter

    in reply to: Length of description in preview #322259

    Hey!

    Please try this code instead – insert it at the bottom of your child theme functions.php or enfold/functions.php:

    
    add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
    function avia_category_content_filter($current_post)
    {
    if(!is_single())
    {
    	global $more;
    	$more = 0;
    	$current_post['content'] =  get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>');
    }
    return $current_post;
    }
    

    Regards,
    Peter

    in reply to: How to make WooCommerce Email RTL #322242

    Hey!

    I’ll close this thread now. WooCommerce emails are definitely beyond the scope of our support forum…

    Best regards,
    Peter

    in reply to: When WPML Plug-in is Active My half of Pages Disappear #322240

    Hi!

    I still think it’s a memory problem. If I check the server information (you can find it in the source code of your website in the head section) it still shows a memory limit of 64M which means your server does still not use 128M. Probably the server administrator does not allow you to increase the memory to 128M. I suggest to contact the host/server administrator and to ask them to increase the memory for you. Sometimes you need to upgrade the hosting plan if you need more memory…

    Regards,
    Peter

    Hi!

    It works now. I just had to activate the language dropdown ( WPML > Languages).

    Regards,
    Peter

    in reply to: WPML menu item not showing #322234

    Hey!

    I fixed it. I just had to re-save the WPML options.

    Best regards,
    Peter

    in reply to: Bug blog categories #322223

    Hi!

    Please create us an admin account and post the login credentials as private reply – I’ll look into it.

    Cheers!
    Peter

Viewing 30 posts - 1,951 through 1,980 (of 9,352 total)