Forum Replies Created

Viewing 30 posts - 7,081 through 7,110 (of 9,352 total)
  • Author
    Posts
  • in reply to: Enfold more licenses #170434

    Hey diaarts!

    Yes, you need to buy a license for each wordpress installation. If you want to install the theme on two (or more) different wordpress websites or two (or more) multisite blogs you need to purchase a license for each instance of wordpress.

    Personally I’d suggest to create a separate account for each customer because then you can give them the license key and they can use it to register for a support forum account. If you buy the themes with your account your customers won’t be able to register for our support forum because all licenses are connected to your username/account (diaarts).

    Envato doesn’t offer any discounts at the moment. You can purchase an extended license for $2750 though – then you can install the theme on as many servers as you like but you’re not allowed to resell the theme on other marketplaces.

    Regards,
    Peter

    in reply to: JW Player not visible on default blog page #170368

    Hello!

    You can try to add following code to functions.php

    
    add_filter('the_excerpt', 'do_shortcode');
    

    It will activate shortcodes support for excerpts. By default wordpress does not allow html code or shortcodes in the excerpt: http://wordpress.org/support/topic/shortcodes-dont-work-in-excerpts

    Cheers!
    Peter

    in reply to: Enfold header ajax Search as widget #170366

    Hello dmaca!

    No, the header search function is not available as widget but you can try a plugin like: http://wordpress.org/plugins/woocommerce-predictive-search/

    Best regards,
    Peter

    in reply to: Translating the Calendar #170360

    Hello faterra!

    You can change the date format and placeholder text with following code- add it to the bottom of functions.php and replace DD / MM / YY with a date format of your choice

    
    add_filter('avf_datepicker_dateformat', 'avia_change_dateformat_cf');
    add_filter('avf_datepicker_date_placeholder', 'avia_change_placeholder_cf');
    
    function avia_change_dateformat_cf() { return  'dd / mm / yy'; }
    function  avia_change_placeholder_cf() { return  'DD / MM / YY'; }
    

    The prev/next button is not translatable at the moment – we’ll fix this in the next update.

    Cheers!
    Peter

    in reply to: Slide thru Portfolio, but with Categories-Filter #170358

    Hey astrosoft!

    No, right now WordPress does not support this filter for cpts (see: https://kriesi.at/support/topic/is-it-possible-to-create-two-completely-seperate-portfolios/#post-116113 ) – however I expect that they’ll update the function with wp3.8.

    Cheers!
    Peter

    in reply to: Adding Custom Social Icons #170356

    Hello!

    1) Open up /wp-content/themes/enfold/includes/admin/register-admin-options.php and search for

    
    								"subtype" => array(
    
    									'500px' 	=> 'five_100_px',
    									'Behance' 	=> 'behance',
    									'Dribbble' 	=> 'dribbble',
    									'Facebook' 	=> 'facebook',
    									'Flickr' 	=> 'flickr',
    									'Google Plus' => 'gplus',
    									'Instagram'  => 'instagram',
    									'LinkedIn' 	=> 'linkedin',
    									'Pinterest' 	=> 'pinterest',
    									'Skype' 	=> 'skype',
    									'Soundcloud'=> 'soundcloud',
    									'Tumblr' 	=> 'tumblr',
    									'Twitter' 	=> 'twitter',
    									'Vimeo' 	=> 'vimeo',
    									'Xing' 		=> 'xing',
    									'Youtube'   => 'youtube',
    									'Special: RSS (add RSS URL, leave blank if you want to use default WordPress RSS feed)' => 'rss',
    									'Special: Email Icon (add URL to a contact form)' => 'mail',
    
    								)),
    

    You can add your social media icon to the array. The first value represents the caption in the dropdown, the second value will be used to show embed the icon (icon/character code). We’ll include a filter in the next update which helps you to add a social icon without modifying the theme files.

    Then add following code to functions.php

    
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['behance']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue915');
    return $icons;
    }
    

    and instead of “behance” insert the option value of your social icon (replace it with the same value you used for the “icon/character code” in step 1). You also need to replace ue915 with the character code of your icon – if you don’t know it you can use fontello.com to look up the default values (click on the social icon and select “Customize Codes”).

    Cheers!
    Peter

    in reply to: Editor ist blockiert #170351

    Hi!

    Bitte sende die Daten an: (Email address hidden if logged out)

    Cheers!
    Peter

    in reply to: Codestyling Localization display several errors #169956

    Hello!

    Yes, you can just overwrite it.

    Regards,
    Peter

    in reply to: Best way to add icons to the top level menu #169954

    Hi!

    Yes, but it’s better to use the shortcode because if you upload a custom font the font family can be different. Kriesi uses the css code for some standard icons only. It’s also more user friendly because for the css solution you need to know the character code of the icon whereas the shortcode generator will take care of it and display the icons in a grid and you can simply select them with a click.

    Best regards,
    Peter

    in reply to: Translated blog posts not visible in 2nd WPML language #169863

    Hi Eykie!

    I think some weeks ago another user had a similiar problem and fixed it on his server. Open up enfold/index.php and replace

    
    			if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
    

    with

    
    			if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
    
    			$page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : get_query_var( 'page' );
    			query_posts(array('posts_per_page'=> get_option('posts_per_page'),'paged'=> $page));
    

    Regards,
    Peter

    in reply to: Border between sidebar and content #169834

    Hi!

    We had to change some style rules because of the new html5 markup. Re-saving the theme settings should solve the issue though because Enfold will regenerate the dynamic stylesheet as soon as you save the settings.

    Best regards,
    Peter

    in reply to: Save colors #169832

    Hi denye!

    Can you elaborate please? You can use the quick css field (Enfold > Styling) if you want to save some custom css rules.

    Best regards,
    Peter

    Hey!

    Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.

    Regards,
    Peter

    in reply to: Enfold > Plugin conflict? Bug? #169827

    Hi!

    We’ll look into it.

    Regards,
    Peter

    in reply to: Products not showing up #169825

    Hey rwwood!

    Can you post a link to your website/product pages please?

    Best regards,
    Peter

    in reply to: Entypo icon font in footer #169824

    Hi!

    I posted a solution for the menu here: https://kriesi.at/support/topic/best-way-to-add-icons-to-the-top-level-menu/
    If you want to embed the icon into the php code you can use following code

    
    echo av_icon('ue802', 'entypo-fontello');
    

    The first parameter is the icon character code (you can use fontello.com to find it – just select the icon and click on “Customize Codes” to find out which code is used to display the icon) and the second parameter tells Enfold which font family should be used for the icon (by default it’s entypo-fontello).

    Cheers!
    Peter

    in reply to: Small top navigation drop down not working #169820

    Hey!

    Yes, we’ll include this fix.

    Cheers!
    Peter

    in reply to: Enfold > Plugin conflict? Bug? #169819

    Hi zerozendesign!

    1) Please make sure you’re using the latest version of Enfold (2.3.1)

    2) Please deactivate all third party plugins (especially jquery updater) and check if the tabs start to work again. If yes activate the plugins one by one to find the culprit.

    Best regards,
    Peter

    in reply to: Slider shows loading symbol #169817

    Hey Patchharris!

    Your website gives me a 404 – not found error when it tries to load: http://schuttiesfasteners.com.au/wp-content/uploads/2013/09/SS-Piano-Hinge.png – maybe you’re using this image in one of the layers/slides and the slider tries to load the image but can’t fetch it because the server returns “not found”? If this doesn’t help please try to deactivate all third party plugins – especially the jquery updater plugin – and check if this solves the issue.

    Cheers!
    Peter

    in reply to: Bold Fonts with New Update #169816

    Hey jgoldberg1983!

    Yes, we had to change some style rules because of the new html5 markup. Re-saving the theme settings should solve the issue though because Enfold will regenerate the dynamic stylesheet as soon as you save the settings.

    Cheers!
    Peter

    in reply to: Homepage recents post thumbnails #169814

    Hello!

    Please try to append an !important tag like

    
    @media only screen and (min-width: 768px) {
    .avia-content-slider .slide-image img {
    height: 160px !important;
    }
    }
    

    and don’t forget to clear your browser cache.

    Cheers!
    Peter

    in reply to: Icons still Missing #169813

    Hello hotznplotz!

    I tagged this thread for Kriesi because he can test your website on his Mac. Your icons work just fine on my end though (Win8 with Chrome, Firefox and IE10). Please don’t forget to clear the browser and server cache if necessary.

    Regards,
    Peter

    in reply to: Best way to add icons to the top level menu #169808

    Hi pharefm!

    Afaik the new icon font system does not allow you to add an icon this way because the user can upload custom font sets and Kriesi uses the data attribute to select the right font set. I’d suggest to use the “icon” shortcode to add an icon to the menu title/link. Right now the menu title does not support shortcodes but we’ll add this feature in the next version. For now you need to modify /wp-content/themes/enfold/includes/helper-responsive-megamenu.php manually – open up the file and replace

    
    $heading_title = $title;
    

    with

    
    $heading_title = do_shortcode($title);
    

    and

    
    $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
    

    with

    
    $item_output .= $args->link_before . do_shortcode(apply_filters('the_title', $item->title, $item->ID)) . $args->link_after;
    

    and then you should be able to use the icon shortcodes in the menu title field too. Use the “Magic wand” to generate the icon shortcode.

    Best regards,
    Peter

    in reply to: Sale Flash Pro – compatibility #169780

    Hi!

    You can use the single-product class to change the top value for single product pages only. Use the code Ismael posted above and change the top value if necessary and then add following code to it:

    
    #top.single-product .onsale {
    top: -220px;
    }
    

    to use another top value for single pages.

    By the way why it doesnt displayed like this image :

    Because the plugin itself doesn’t contain any styling code but it will take care of the php/html code. It’s up to the theme author to style it. The screenshot/mockup just shows how WooThemes styled it with one of their themes but they’re also using different styles for different themes. There’s no standard whatsoever.

    Regards,
    Peter

    in reply to: Enable Hover-effect with CSV product import field #169776

    Hey dmaca!

    No, tbh I’m not sure why it doesn’t work. You can try to add a print_r() function to enfold/woocommerce-config/config.php to output the content of the get_post_meta query. Search for

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    

    and replace it with

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    print_r($active_hover);
    

    to check the return value. If you want to activate it for all products replace

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    

    with

    
    $active_hover = true;
    

    and it should work even if the post meta value is not set.

    Cheers!
    Peter

    in reply to: ie8 logo social icons and menu problems #169770

    Hello!

    Great, Kriesi will add this code to the next update.

    Regards,
    Peter

    in reply to: Update 2.3: alles ist weg #169760

    Hi HappyBeagle!

    Vielleicht ist beim Update-Vorgang etwas schief gelaufen (schadhafte/fehlerhafte Dateien, etc.). Bitte versuche das Theme mittels FTP zu aktualisieren. Devin hat hierfür auch ein Tutorial Video erstellt: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Peter

    in reply to: ie8 logo social icons and menu problems #169479

    Hello!

    You can also try the IE8 hack to change it for all elements:

    
    a {max-width:none\9;}
    

    Regards,
    Peter

    in reply to: Titelleiste in Safari zeigt nur Elternseite #169420

    Hallo,
    versuche einmal alle installierten Plugins zu deaktivieren. Ändert sich dann etwas? Irgendetwas scheint den Output der wp_title() Funktion bei dir zu blockieren.

    in reply to: Post Description is blogged #169413

    Hi!

    Duplicate of https://kriesi.at/support/topic/editor-ist-blockiert/ – closed.

    Best regards,
    Peter

Viewing 30 posts - 7,081 through 7,110 (of 9,352 total)