Forum Replies Created

Viewing 30 posts - 5,911 through 5,940 (of 9,352 total)
  • Author
    Posts
  • in reply to: To select Custom Sort Order for Portfolio Items #204989

    Hi nicolasweh!

    You can use plugins like http://wordpress.org/plugins/post-types-order/ to sort the posts and plugins like: http://wordpress.org/plugins/taxonomy-terms-order/ to change the term/category order.

    Cheers!
    Peter

    in reply to: Enfold woocommerce category property show on a page #204988

    Hi!

    No, this is currently not supported by the product slider. You can try the post slider instead which also supports other taxonomies/terms like “product attributes” but the styling is different and the post slider doesn’t support the “Add to cart” buttons, etc.

    Best regards,
    Peter

    in reply to: Pop up Contact Form #204983

    Hey!

    No, unfortunately not. There’s no other simply solution and the “onclick” event you’re taking about also doesn’t create a popup form without the right code. The prettyphoto solution is the only solution which does not require a theme customization or third party plugin.

    Regards,
    Peter

    in reply to: Pop up Contact Form #204957

    Hi!

    If you want to open the entire page (not just the contact form) in an iframe you can use prettyphoto – the link would look like

    
    <a href="http://www.mywebsite.com?iframe=true" rel="prettyPhoto">Contact Us</a>
    

    and instead of http://www.mywebsite.com insert your contact form url address. However note that this will open the entire page and not just a plain contact form…

    Regards,
    Peter

    in reply to: Pop up Contact Form #204954

    Hi!

    Yes but from a technical point of view it’s hard to implement and it’s definitely connected to the contact form function. If you really want to add such a feature to the theme please hire a freelancer for the customization – you can contact werkpress here: http://kriesi.at/contact/customization or contact a freelancer here: http://www.microlancer.com/

    Regards,
    Peter

    in reply to: Pop up Contact Form #204950

    Hi Hardeep!

    Enfold doesn’t support such a contact form. Your best bet is to search for a third party plugin (like the one you mentioned in your post) to add the feature to Enfold.

    Cheers!
    Peter

    in reply to: Masonry Portfolio with links to pages not posts #204949

    Hi Gillianrose!

    The masonry gallery doesn’t support pages because you can’t query pages like standard posts or custom post types (portfolio items). Thus it’s also not easily possible to implement this feature. If you want to hire a freelancer you can contact werkpress here: http://kriesi.at/contact/customization or contact a freelancer here: http://www.microlancer.com/

    Personally I recommend to use the portfolio entries instead of pages because you can use the entries with the “Advanced Layout Builder” and there’re no disadvantages/limitations compared to standard pages. Even the layout looks exactly the same. The portfolio items are also used on the demo page here: http://kriesi.at/themes/enfold/portfolio/masonry-portfolio/ and you’ll get the same effect on your website.

    If you don’t want to link to a portfolio entry then you can install this plugin: http://wordpress.org/plugins/redirection/ to redirect the user from a portfolio entry to any page(s) of your choice and then the portfolio entry link would work like a direct link to a standard page.

    Best regards,
    Peter

    in reply to: Unusual huge space between top and bottom of the header #204946

    Hi!

    Yes, Devin hit the nail on the head. It’s like taking painkillers – they may help you to bear up against pain but they won’t heal the disease…

    Regards,
    Peter

    in reply to: SEO #204936

    Hi!

    1) You can change the avia title tag with a filter and you don’t need to hack the theme files. Insert following code into your child theme functions.php file

    
    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_product()) $args['heading'] = 'strong';
    return $args;
    }
    

    This code just affects product single pages and you don’t need to update the other pages/posts.

    2) The search link must contain the ?s php post var – otherwise the link wouldn’t work without javascript. However another user reported that this may affect seo and we’ll add a rel=”nofollow” attribute to the search link with the next theme update and this should prevent google from indexing/following the link.

    Cheers!
    Peter

    in reply to: create portafolio entry and 404 error #204934

    Hey!

    I tested the string translation with Enfold and it works on my test server – in fact it’s the only way to translate the portfolio post type slug since v2.4.4 because we removed our custom slug rewrite function. Please create us an admin account and post the login credentials as private reply.

    Cheers!
    Peter

    in reply to: AddThis Facebook icon doesn't grab proper text or photo. #204931

    Hey!

    I recommend to install http://wordpress.org/plugins/wordpress-seo/ and then you can use the “Social” tab/options: http://www.clipular.com/c/5678826713513984.png?k=2EpKGdnQl0mtbk_vvn_O5O2cfYY to specify some content for the social sharing services (description, image for facebook and google+, etc.)

    Regards,
    Peter

    in reply to: Accordian tags-> no longer working properly #204721

    Hi twhaoske!

    Yes, we’ll fix it with the next theme update. If you need a quick fix replace following line in: /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles.php

    
    $output .= '<a href="#" data-tag="'.$key.'" class="'.$first.'">'.$key.'</a>';
    

    with

    
    $output .= '<a href="#" data-tag="{'.$key.'}" class="'.$first.'">'.$key.'</a>';
    

    Best regards,
    Peter

    in reply to: dummy data & wpml problems #204709

    Hey!

    Please try to increase the allocated php memory to 128M by editing the wp-config.php file: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP ?

    Cheers!
    Peter

    in reply to: create portafolio entry and 404 error #204508

    Hey!

    Yes, please try to install the latest theme version (v2.4.4). Then go to Settings > Permalinks to configure the portfolio slugs and save the settings.

    Regards,
    Peter

    in reply to: Copy/duplicating portfolio item #204504

    Hi hellovlad_!

    I didn’t test it with Enfold but you can try this plugin: http://wordpress.org/plugins/duplicate-post/ to duplicate posts, portfolio entries and pages.

    Cheers!
    Peter

    in reply to: Avia Search as a Shortcode or Widget #204487

    Hey jmaguirrei!

    You can hack the theme files if you want to activate the ajax preview for the search widget: https://kriesi.at/support/topic/instant-ajax-search-on-sidebar/#post-198969

    Cheers!
    Peter

    in reply to: 'You might also like' Customization #204486

    Hey jmaguirrei!

    Try to replace following code in /wp-content/themes/enfold/includes/related-posts.php

    
            $my_query = get_posts(
                                array(
                                    'tag__in' => $tag_ids,
                                    'post_type' => get_post_type($this_id),
                                    'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
                                    'orderby'=>'rand',
                                    'post__not_in' => array($this_id))
                                );
    

    with

    
    
    $cat_ids = array();
    $categories = get_the_category($this_id);
    
    if($categories)
    {
    	foreach($categories as $category) 
    	{
    		$cat_ids[] = $category->term_id;
    	}
    }
    
            $my_query = get_posts(
                                array(
                                    'tag__in' => $tag_ids,
                                    'category__in' => $cat_ids,
                                    'post_type' => get_post_type($this_id),
                                    'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
                                    'orderby'=>'rand',
                                    'post__not_in' => array($this_id))
                                );
    

    Regards,
    Peter

    in reply to: Change the Upload DIR #204485

    Hi MacSpecialist!

    No, afaik you can’t use an external server or different url for the uploads folder by default. Maybe there’s a third party plugin which adds such a feature to wordpress – I recommend to search the plugin repository here: http://wordpress.org/plugins/

    Best regards,
    Peter

    in reply to: Can I reduce the white space (padding) #204464

    Hi kinnear!

    Insert following code into the quick css field

    
    body.home .column-top-margin {
    margin-top: 0;
    }
    

    Regards,
    Peter

    in reply to: Exporting avia template #204462

    Hey 7thflow!

    There’s no export feature but you can activate the debug mode to access the raw shortcode data. Afterwards you can use the debug window to copy/paste the raw shortcode data from one website to another. If you want to activate the debug mode add following php code into your child theme functions.php

    
    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }
    

    If you don’t use a child theme open up enfold/functions.php and insert the code below

    
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Cheers!
    Peter

    Hey!

    Please try following code

    
    #top .active-parent-item .avia-menu-fx .avia-arrow-wrap, #top .active-parent-item .avia-menu-fx{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    }
    

    Regards,
    Peter

    in reply to: Please Delete Links #204458

    Hey zendao!

    Done :)

    Best regards,
    Peter

    in reply to: Blog Author Gravitars #204455

    Hey!

    You must make sure that your wordpress user email address matches the gravatar account email address. Otherwise WordPress can’t connect your wordpress account to the gravatar service.

    Cheers!
    Peter

    in reply to: how to create my own version of "import dummy data"? #204452

    Hi!

    You can import the parent theme settings since Enfold 2.3. Go to the theme option panel and search for the “Import Parent Theme Settings” button: http://www.clipular.com/c/4506589276930048.png?k=VaOCyRhRMpV98mYOD3Pb468z6rA

    Best regards,
    Peter

    Hey Monsoon!

    The code can be found in /wp-content/themes/enfold/includes/related-posts.php – we use a tag query to query some posts which share one or more tags with the current post. Sticky posts are ignored and the order is set to “random”. If you want to modify the query parameters (i.e. order the posts by title or date search for

    
            $my_query = get_posts(
                                array(
                                    'tag__in' => $tag_ids,
                                    'post_type' => get_post_type($this_id),
                                    'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
                                    'orderby'=>'rand',
                                    'post__not_in' => array($this_id))
                                );
    

    and change the query parameters based on your requirements. Adding a different unique page or an ad is not possible without rewriting/customizing the related posts template. I recommend to search for third party ad plugins which allow you to embed the ads with shortcodes into the post content. Then you could add the shortcode at the very end of the post to show some ads above the related post section.

    Regards,
    Peter

    in reply to: Enfold | Header Transparency with Full Page Slider #204446

    Hi Weka!

    1+2) Use following code css code

    
    .header_color .header_bg{
    background-color: rgba(255,255,255,0.5);
    }
    

    for a semi transparent background color. The last value is the opacity value. It must be a value between 0 and 1 – i.e. 0.5 will create a semi-transparent background with 50% opacity.

    3) Just revert your custom css code and clear the browser cache.

    4) You can use the “Fullscreen Slider” instead of the “Fullwidth Easy Slider” (i.e. demonstrated here: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/ ). The fullsreen slideshow will always cover the entire screen.

    Regards,
    Peter

    in reply to: Warning trim message #204445

    Hey kinnear!

    Please try to update your theme to v2.4.4. I recommend to use ftp: https://vimeo.com/channels/aviathemes/67209750 – just overwrite the old theme files with the new, updated files.

    Best regards,
    Peter

    in reply to: Making the category page become full width format #204440

    Hi!

    Please use following code to hide the meta information

    
    #top.archive .slide-meta{ display: none !important; }
    

    Cheers!
    Peter

    in reply to: Font style/size is different on sub menu #204438

    Hi!

    The mega menu structure is still not correct. You must some empty items (which just contain a dash – instead of a title) to the second level and then drag your other menu items to the right (third menu level). The empty items create new columns and the dash prevents WordPress from showing the column titles. The structure must look like

    Note that the second level items (which just use a dash – as title) will not show up in the menu. You can use any custom links or pages for these menu items.

    Cheers!
    Peter

    in reply to: Unusual huge space between top and bottom of the header #204436

    Hi!

    Did you try to deactivate all third party plugins – especially the cache and “optimize” plugins may break the javascript code. If the issue is not caused by a third party plugin try to re-install all theme files (overwrite the theme files with ftp) and if the procedure still doesn’t fix the issue try to insert following code into the quick css field

    
    #header_main .container, .main_menu ul:first-child>li a {
    max-height: 88px !important;
    }
    

    Best regards,
    Peter

Viewing 30 posts - 5,911 through 5,940 (of 9,352 total)