Forum Replies Created
-
AuthorPosts
-
Hey!
You must replace “Buy Now!” with the icon font character code. The easiest way to get the char code is to use the “icon shortcode” window and then hover over the icons and read the tooltip ( http://www.screenr.com/MYsN ). You can ignore the \u prefix but you need to copy/remember the eXXX code and then insert it into your stylesheet/css code.
Cheers!
PeterHey!
Sure – you can use following css code
.page-id-15 #av_section_1 .post-entry{ background: rgba(255,255,255,0.5); }
The last value must be between 0 and 1 and determines the opacity.
Cheers!
PeterHi Tommy!
Open up single.php and delete
//wordpress function that loads the comments template "comments.php" comments_template( '/includes/comments.php');
If you want to insert a contact form below the post content you can i.e. use the do_shortcode() function: http://codex.wordpress.org/Function_Reference/do_shortcode to execute the contact form shortcode.
Regards,
PeterHi!
I can’t modify the theme files and debug the issue (because I don’t have admin rights) but you can try to use this code to use the email field address as mail sender.
add_filter('avf_form_from', 'avia_change_from', 10, 3); function avia_change_from($from,$new_post,$params){ $from = $new_post['e-mail_1']; return $from; }
– insert the code at the very bottom of functions.php. If it doesn’t work please give me admin rights – otherwise I can’t debug the code.
Best regards,
PeterHi hellovlad_!
1) The breadcrumb doesn’t take care of the menu items and the menu order does not affect the breadcrumb hierarchy. See: https://kriesi.at/support/topic/breadcrumb-navigation-2/
2) I recommend to rename the “Portfolio 3 Column Ajax” page to “Portfolio” – then the structure should be “You are here: Home / Portfolio / Portfolio Item Name.”. If you want to remove the “Home” link insert following code at the bottom of functions.php
add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1); function avia_change_home_breadcrumb($args){ $args['show_home'] = false; return $args; }
Then the breadcrumb should just show the pages (“You’re here: Portfolio / Portfolio Item Name”).
Best regards,
PeterJanuary 13, 2014 at 10:18 am in reply to: Enfold – Portfolio items order, doesn t seem sortable by date added #208871Hi Monsoon!
Please try to insert following code at the bottom of function.php. You can use DESC if you need a descending order
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
Regards,
PeterJanuary 13, 2014 at 10:15 am in reply to: Yoast SEO Plugin makes some pages go missing… incompatibility? #208870Hey BelIblis!
No, we’re not aware of such an incompatibility issue (in fact you’re the first user who reports it). I suggest to increase the allocated php memory first before you report this bug to Yoast. Open up wp-config.php and insert following code
define( 'WP_MEMORY_LIMIT', '128M' );
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Best regards,
PeterJanuary 13, 2014 at 10:12 am in reply to: Post Slider: need to show full story and button content element #208869Hi!
1) Ok, maybe you’re using another excerpt option. Please search for
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');
and replace it with
$prepare_excerpt = !empty($entry->post_excerpt) ? do_shortcode($entry->post_excerpt) : avia_backend_truncate(do_shortcode($entry->post_content), apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');
If you always want to show the full content (including html, etc.) replace it with
$prepare_excerpt = do_shortcode($entry->post_content);
3) But the category page for WODS would be http://crossfitcaldwell.com/category/wod/ and not http://crossfitcaldwell.com/wods/
The “archive template” is a special template which lists the latest posts of all categories. If you want to link to the category page just go to Appearance > Menus and add the “WODS” category item to the main menu.Regards,
PeterHey!
Try following code
.page-restrict-output { width: 1210px; margin: auto; } .page-restrict-output form, .page-restrict-output p, .page-restrict-output form input{ text-align: center !important }
Best regards,
PeterHey graphicsplus!
Please insert following code into the functions.php file
add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1); function avia_category_content_filter($current_post) { if(is_archive()) { $current_post['content'] = get_the_excerpt(); $current_post['content'] .= $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>'; } return $current_post; }
Best regards,
PeterHi bentkd!
Yes, you can use following code
.avia-icon-list .iconlist_icon { height: 40px; width: 40px; line-height: 40px; font-size: 23px; }
to re-size the list icons. The first three values must be set to the same px value (i.e. 40px). The last value can vary.
Best regards,
PeterHey!
Glad you found a solution :)
Regards,
PeterHi MtnStreamGroup!
Yes, the lightbox will show the image title, description, etc. – if you want to hide this information please add following code into the quick css field
div div.ppt { display: none !important; }
Cheers!
PeterHey jliamgrist!
I suggest to use the “button shortcode” instead. Go to a page or post editor page and use the “Magic wand” shortcode generator to create the button shortcode. Then insert it into the html field of the LayerSlider. The LayerSlider preview won’t show the shortcode (you’ll see the shortcode text) but it will display the shortcode on the front end.
Cheers!
PeterHey AndrewDelaware!
Please insert this code into the quick css field
#top.avia-blank #main .container_wrap:first-child { border: none !important; } #top.avia-blank .avia-shadow { box-shadow: none !important; }
Cheers!
PeterHey!
Glad you found it :)
Regards,
PeterHey jtree5757!
I tested the option on my test server and it works for me. I guess some other css code overwrites the icon inline styles and thus the “font size” option doesn’t work for you. Please post a link to your icon/website and we’ll look into it.
Regards,
PeterJanuary 13, 2014 at 9:03 am in reply to: Enfold Search Results Page Causing Horizontal Scroll #208816Hey!
I tested your website with w3cvalidator: http://validator.w3.org/check?uri=http%3A%2F%2Fxdnet.biz%2F%3Fs%3DTest&charset=%28detect+automatically%29&doctype=Inline&group=0 and I guess one html syntax error might cause the issue:
Line 283, Column 194: No p element in scope but a p end tag seen. …iz/wp-content/uploads/LinkedInButton.png" alt="Join us on LinkedIn!" /></a></p>
You can also remove the scroll bar with css code – insert
body.search { overflow-x: hidden; }
into the quick css field.
Cheers!
PeterHi!
You can use the class of the surrounding div to change the content. I.e. if you want to use a different icon for product images use
.single-product-main-image .image-overlay .image-overlay-inside:before{content:"\E869"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
and this rule will overwrite the default icon.
The difference between the three css code lines is just the icon. \E869 is the default icon, \E832 is the icon for external links and \E897 is the video icon.
Regards,
PeterHey!
2.4.5 is the latest version. 2.5 was a typo and it’s actually reserved for the next big feature release. Kriesi made a mistake and released 2.4.3 as 2.5 and then uploaded a new version (2.4.4) to correct the version number.
Best regards,
PeterHi Alexa!
Please use ftp – it’s better because you can make a backup of the theme files first and you can make sure that the updated files are uploaded on your server. A tutorial video can be found here: https://vimeo.com/channels/aviathemes/67209750
Best regards,
Cheers!
PeterHi!
It seems like you didn’t select this page as “blog page”. You’ve 2 options:
1) Select the blog layout on the editor page here: http://handundfuss-nuernberg.de/wp-admin/post.php?post=140&action=edit(click on the “blog” element and change the “Blog-Stil” setting.
2) Go to http://handundfuss-nuernberg.de/wp-admin/admin.php?page=avia and select the “Aktuelles” page from the “And where do you want to display the Blog?” dopdown. Then save the settings and Enfold should use the blog settings you set on the General Settings – Blog Style page.
Cheers!
PeterHi!
Please use ftp – it’s better because you can make a backup of the theme files first and you can make sure that the updated files are uploaded on your server. A tutorial video can be found here: https://vimeo.com/channels/aviathemes/67209750
Best regards,
PeterHi modelity!
Please use ftp to update the theme: https://vimeo.com/channels/aviathemes/67209750 if the auto update doesn’t work.
Cheers!
PeterJanuary 12, 2014 at 12:21 pm in reply to: Enfold – Remove page titles from showing left of breadcrumbs #208634Hi!
Glad you found the solution :)
Regards,
PeterHey!
You can try following code – insert it into the functions.php file.
if(!function_exists('avia_modify_blog_breadcrumb')) { function avia_modify_blog_breadcrumb($trail) { foreach($trail as $key => $data) { $search = 'SEO Tools to Equip Your Business – Blog'; if(strpos($data, $search) !== false) { $data = str_replace($search, "Blog", $data); $trail[$key] = $data; } } return $trail; } add_filter('avia_breadcrumbs_trail','avia_modify_blog_breadcrumb'); }
Regards,
PeterJanuary 12, 2014 at 11:45 am in reply to: ENFOLD + Nextgen Widget: Resizing of thumbnails doesn't work #208625Hey!
If you want to change the thumbnail image size with css you can use following code
#top .ngg-widget img { max-width: 50px; max-height: 50px; }
Best regards,
PeterJanuary 12, 2014 at 11:33 am in reply to: ENFOLD + Nextgen Widget: Resizing of thumbnails doesn't work #208623Hey!
Our support team is not only based in Europe and i.e. Ismael lives on the Philippines. Your login data is safe. Please use the “private reply” feature to post the login credentials.
Regards,
PeterHey!
Please try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
If this doesn’t help try to re-install WP3.8 and Enfold 2.4.5 with ftp: https://vimeo.com/channels/aviathemes/67209750
Regards,
PeterHi!
No, please create me an admin account and post the login credentials as private reply. I just tested it with a form on my test server and the recipient field worked with my gmail and ymail account. You must make sure that the email address of the administrator (“Enter the Email address where mails should be delivered to.” option field on the “Edit” page) and the email address you use to test the form are different – otherwise you’ll send an email from your account to your account and then the recipient field won’t work (or actually it doesn’t make sense).
Best regards,
Peter -
AuthorPosts