Forum Replies Created

Viewing 30 posts - 4,141 through 4,170 (of 9,352 total)
  • Author
    Posts
  • in reply to: Icon colours #249151

    Hey!

    Can you post a link to the icon box please – I’ll investigate the css code and check why the styles do not apply to it.

    Regards,
    Peter

    in reply to: Blog Pagination #249149

    Hi!

    I’ll mark this thread for Kriesi. I couldn’t find any obvious reason why the pagination doesn’t work. I think it’s probably related to the server configuration because we didn’t get any similar bug reports recently.

    Best regards,
    Peter

    Hi!

    See http://stackoverflow.com/questions/14445891/keep-placeholder-on-focus-in-ie10 – IE has a different behavior when it comes to the “focus” state of an input field. There’s no fix for it.

    Cheers!
    Peter

    in reply to: entry with sidebar #249142

    Hey!

    Open up wp-content/themes/enfold/includes/loop-index.php and replace:

    
    $size = strpos($blog_style, 'big') ? strpos(avia_layout_class( 'main' , false), 'sidebar') ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
    

    with

    
    $size = strpos($blog_style, 'big') ? strpos(avia_layout_class( 'main' , false), 'sidebar') ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
    if(is_single() && strpos(avia_layout_class( 'main' , false), 'sidebar')) $size =  'entry_with_sidebar';
    

    This modification should make sure that the “entry_with_sidebar” thumbnail size is used on the single post page.

    Best regards,
    Peter

    in reply to: Forum feature formatting issue #249139

    Hi!

    It seems like bbpress still loads the default stylesheet. Please try to insert this code into the theme functions.php file to fix the issue:

    
    add_filter('bbp_default_styles', 'avia_bbpress_deregister_default_assets', 10, 1);
    function avia_bbpress_deregister_default_assets($styles)
    {
    	return array();
    }
    

    We’ll also fix it with the next theme update.

    Regards,
    Peter

    in reply to: Blog Layout Issues #249130

    Hi!

    1) Single posts do not support the LayerSlider. The LayerSlider is an advanced layout builder element and posts do not support the advanced layout builder. If you want to add a slideshow to the post you can use the “Magic wand” icon in the editor toolbar to embed a slideshow at the top but the you can’t add a “fullwidth” slideshow like the LayerSlider or the “Fullwidth EasySlider” to the posts (because these elements are just supported by the advanced layout builder).

    2) Category page – if you want to add widgets to the category page sidebar go to Appearance > Widgets and add some widgets into the “Displayed Everywhere” or “Sidebar Blog” widget area. Note that the archive pages also don’t support the advanced layout builder – they’re generated dynamically by wordpress and use the archive.php template. You can’t add template builder elements to category/term pages.

    3) If you don’t want to show the entire post on category pages please use the more quicktag: http://en.support.wordpress.com/splitting-content/more-tag/ to separate the excerpt from the full post content. Alternatively you can use the “excerpt” field if you modify the theme code a bit – see: https://kriesi.at/support/topic/setting-blog-to-multi-author-big-preview-blog-with-title-excerpt-read-more/#post-221204

    Cheers!
    Peter

    in reply to: Slider Display Issues #249127

    Hi!

    Please go to Enfold > Theme Options and click the “Save” button. This will force Enfold to regenerate the dynamic stylesheet (wp-content/uploads/avia_dynamic/enfold.css) and then the issue should be fixed.

    Regards,
    Peter

    in reply to: Some questions about Enfold #249125

    Hey!

    No, you don’t need to change the code in header.php. Just place this code:

    
    add_action('wp_head', 'add_google_rel_author');
    function add_google_rel_author() {
    echo '<link rel="author" href="https://plus.google.com/profilecode/posts" />';
    }
    

    into the functions.php file and wp will add the line

    
    <link rel="author" href="https://plus.google.com/profilecode/posts" />
    

    to the “head” section when the page/html code is generated.

    Cheers!
    Peter

    in reply to: Fixing up menu after update #249124

    Hey!

    I’m sorry to hear that you’re frustrated. Many users requested a new header/menu/logo builder and it’s nearly impossible (from a technical point of view) to add new options without modifying the template code quite a bit. The vast majority of our users doesn’t customize the theme files extensively and the update shouldn’t be a problem for these users.

    Regards,
    Peter

    in reply to: Header Image/Section to Posts #249118

    Hey!

    Please create us an admin account and post the login credentials as private reply.

    Best regards,
    Peter

    Hey!

    The login credentials don’t work for me. I get an error message: “ERROR: Incorrect username or password. 1 attempt remaining.”.

    Regards,
    Peter

    in reply to: Still having vertical alignment issues #249113

    Hi!

    You can use the custom css class feature (see: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) to apply a special styling to certain color sections. I.e. use the class “small_color_section” and then use:

    
    #top #wrap_all .small_color_section {
    height: 60px !important;
    min-height: 60px!important;
    }
    

    to apply the 60px height attribute to all elements/color sections with the class “small_color_section “.

    Cheers!
    Peter

    in reply to: Linking footer portfolio element to portfolio #249112

    Hi!

    It seems like your server redirects the portfolio entry links ( i.e. http://www.thwilbert.com/portfolio-item/urn-vaults/ ) to the portfolio pages. Please try to flush the permalinks and re-save the permalink settings (Settings > Permalinks). If this doesn’t help deactivate all plugins except WooCommerce & BBPress and save the permalinks again. If the links start to work a plugin triggers the redirection.

    Cheers!
    Peter

    in reply to: Layer slider switches to next slide before end on Ipad #249109

    Hey!

    You can try to change the autoplay settings. Edit the slider, go to “General Settings > Videos and select “Pause Slideshow” – “Permanently”.

    Best regards,
    Peter

    in reply to: Linking post slider to taxonomy overview page #248695

    Hey!

    Yes, this sounds like a good plan :)

    Cheers!
    Peter

    in reply to: Enfold Accordion/Toggler with onclick #248688

    Hey Aleks!

    Afaik this is not possible (or at least not without some complex javascript code) because the iframe code is just embedded into the website and you can’t monitor the click event on the iframe website with Enfold and vice versa. Thus it’s also not possible to connect the links within the iframe table(s) with the accordion script.

    Regards,
    Peter

    in reply to: relative position on image links #248685

    Hey erwanpia!

    It’s required to maintain the cross browser compatibility. Some users reported bugs with the overlay and this code fixed the display flaws. If you remove this code you might want to check if the overlay works for all major browsers (Firefox, Chrome, Safari, IE, etc.)

    Best regards,
    Peter

    in reply to: Blog Pagination #248682

    Hey!

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

    Best regards,
    Peter

    Hi Semo-dk!

    I’ll mark this thread for Kriesi.

    Best regards,
    Peter

    in reply to: Add Read More to Latest NewsWidget #248680

    Hi!

    What’s the website url/domain?

    Best regards,
    Peter

    in reply to: Changing the Category Title Order #248679

    Hey bert787!

    You can use this plugin: http://wordpress.org/plugins/taxonomy-terms-order/ to change the sort order of your portfolio categories.

    Cheers!
    Peter

    Hey!

    You can try to push the progress bar down with this css code – I recommend to insert it into the child theme style.css or into the quick css field:

    
    .gform_wrapper .gf_progressbar_wrapper {
    margin-top: 60px;
    }
    

    Best regards,
    Peter

    in reply to: Header removal, remove scrollto top offset? #248674

    Hi!

    If you want to replace the default avia.js file with a custom version insert this code:

    
    if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    	wp_dequeue_script('avia-default');
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, true);
    	wp_enqueue_script( 'avia-default-child' );
    }
    

    into your child theme functions,php file and then place the custom avia.js file into your child theme folder (url path must be wp-content/themes/enfold-child/js/avia.js ).

    Cheers!
    Peter

    Hey!

    Please use the code I posted here: https://kriesi.at/support/topic/nextgen-gallery-with-enfold-background-fade-with-chrome-not-working/#post-246439 instead of Ismaels code. The child theme name doesn’t matter.

    Best regards,
    Peter

    in reply to: Error in translation file #248672

    Hi!

    You can update the po file easily. Install the plugin ( http://wordpress.org/plugins/codestyling-localization/ ), go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language and click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner). If you can provide a link to the updated Russian po/mo file we’ll include it with the next update – then you don’t need to update your translation files over and over again.

    Regards,
    Peter

    in reply to: Posts of the same categories on the Posts Navigator #248670

    Hey!

    You need to modify the code slightly – use:

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

    Best regards,
    Peter

    in reply to: Linking post slider to taxonomy overview page #248669

    Hey nonne!

    The post slider just displays the posts of a certain category/term (or multiple categories/terms). The posts displayed within the slider will always link to the single post page and do not link to a term/taxonomy overview page.

    Regards,
    Peter

    in reply to: Unable to upload additional fontello font #248668

    Hi 3tuser!

    Unfortunately the “the server didn’t respond” error is very generic and doesn’t help much because it just tells us that the server stopped to process your request. Maybe the ziparchive class ist not installed – it’s a standard php class: http://www.php.net/manual/en/class.ziparchive.php and required for the font uploader. If it’s not installed/activated please contact the server administrator and ask him to activate/install it for you. If the ziparchive class is not the problem please provide a php error log which helps us to identify the problem.

    Cheers!
    Peter

    Hey kidcabide!

    Unfortunately we’re not familiar with the polylang plugin and we can’t support it. We included some special code based on WPML which enables the user to select different blog and home pages for each translation but this code does not work with Polylang. Probably someone would need to modify it before you an use it with Polylang. I suggest to contact werkpress: http://kriesi.at/contact/customization or to hire someone from envato studio: http://studio.envato.com/

    Best regards,
    Peter

    in reply to: Anchor Menu #248666

    Hi!

    Great :)

    Best regards,
    Peter

Viewing 30 posts - 4,141 through 4,170 (of 9,352 total)