Forum Replies Created
-
AuthorPosts
-
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!
PeterHi!
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,
PeterHey!
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,
PeterHi!
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,
PeterHi!
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,
PeterHi 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!
PeterHi 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,
PeterJanuary 3, 2014 at 10:31 am in reply to: Unusual huge space between top and bottom of the header #204946Hi!
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,
PeterHi!
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!
PeterHey!
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!
PeterJanuary 3, 2014 at 10:00 am in reply to: AddThis Facebook icon doesn't grab proper text or photo. #204931Hey!
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,
PeterHi 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,
PeterHey!
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!
PeterHey!
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,
PeterHi 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!
PeterHey 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!
PeterHey 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,
PeterHi 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,
PeterHi kinnear!
Insert following code into the quick css field
body.home .column-top-margin { margin-top: 0; }
Regards,
PeterHey 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!
PeterJanuary 2, 2014 at 12:15 pm in reply to: Highlight current parent page navigation while on child page #204459Hey!
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,
PeterHey zendao!
Done :)
Best regards,
PeterHey!
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!
PeterJanuary 2, 2014 at 11:56 am in reply to: how to create my own version of "import dummy data"? #204452Hi!
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,
PeterJanuary 2, 2014 at 11:47 am in reply to: Enfold – You might also like, how is that controlled and where is it? #204449Hey 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,
PeterHi 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,
PeterHey 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,
PeterHi!
Please use following code to hide the meta information
#top.archive .slide-meta{ display: none !important; }
Cheers!
PeterHi!
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!
PeterJanuary 2, 2014 at 10:44 am in reply to: Unusual huge space between top and bottom of the header #204436Hi!
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 -
AuthorPosts