Forum Replies Created
-
AuthorPosts
-
Hi!
Please try following code:
if(!function_exists('avia_modify_single_portfolio_breadcrumb')) { function avia_modify_single_portfolio_breadcrumb($trail) { if(!is_single() || get_post_type() != 'portfolio') return $trail; $category = get_the_category(get_the_ID()); $newtrail = array(); $parents = get_the_term_list(get_the_ID(), 'portfolio_entries', '', '$$$', '' ); $parents = explode('$$$',$parents); if(!empty($parents[0])) $newtrail[] = $parents[0]; return $newtrail; } add_filter('avia_breadcrumbs_trail','avia_modify_single_portfolio_breadcrumb'); }
– it will just display the first category in the term array. Insert it into your child theme functions.php file.
Cheers!
PeterHi!
Yes, please create me an admin account and post the login credentials as private reply.
Best regards,
PeterHey romankornfeld!
Try following fix – open up wp-content/themes/enfold/framework/php/class-superobject.php and replace:
function set_javascript_framework_url() {
with
function set_javascript_framework_url() { if(is_feed()) return;
Cheers!
PeterMarch 25, 2014 at 10:57 am in reply to: Dropdowns in Gravity forms looks "cut" in the right side #242649Hi!
Try to increase the width of the icon with:
#top .gform_wrapper .chzn-container-single .chzn-single div { width: 28px !important; }
Best regards,
PeterHey!
It seems like the source images are rotated – i.e.: http://encorecoatings.com/wp-content/uploads/2014/03/WILD-DUNES-GREAT-SHOT-e1395500357823-772×1030.jpg
I’m not sure why the browser rotates them but I suspect that the file header of the original image is corrupt and thus the browser doesn’t detect if it’s a portrait or landscape image. Maybe try to delete these images from your server, re-save all of them with Photoshop or Gimp and then re-upload them again.
Best regards,
PeterMarch 25, 2014 at 10:48 am in reply to: Google Fonts NOT working or recognized in CHROME environments #242642Hey Jae!
Please post a link to your website. I’ll check it with Chrome.
Cheers!
PeterMarch 25, 2014 at 10:46 am in reply to: Reach/Label "color section anchor ID's" from Main Menu #242639Hey LynxXrossed!
Yes, you can use the “Links” option. Just insert the url of the page and the section id into the url field and insert some custom text into the “Link text” field: http://www.clipular.com/c/5546377195028480.png?k=viZxC8ZdOFIXZZTgumViP2gwkmY
Regards,
PeterHey!
That’s not easily possible because of the html structure. However you can push the “lost password” link down with this css code:
.lost_password{ clear: both; }
Cheers!
PeterMarch 25, 2014 at 10:35 am in reply to: Using Simple Share Buttons Adder Plugin Hiding All Content #242631Hi!
You can separate them with a comma:
.page-id-571 #ssba, .page-id-580 #ssba, .page-id-590 #ssba { display: none !important; }
Cheers!
PeterHi!
I’ll close this thread now…
Best regards,
PeterHey!
You can suggest the idea here: https://kriesi.at/support/enfold-feature-requests/ . I looked into it and it would require some work to implement this feature (it’s based on a Chrome extension code which you can download here: https://github.com/galambalazs/smoothscroll ). Depending on the number of votes we might add it to a future update…
Cheers!
PeterHey!
Great :)
Best regards,
PeterHi Pedro!
If you want to overwrite an existing shortcode create a “shortcodes” folder within the child theme directory, then copy the /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php into the child theme “shortcodes” folder and modify the php code. At least add following code into the child theme functions.php file
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
This code will make sure the the shortcode file of the child theme is loaded first and you can overwrite the parent theme slideshow shortcode file with the child theme.
Best regards,
PeterHey!
Glad your son found a solution :)
Cheers!
PeterMarch 25, 2014 at 10:20 am in reply to: Language icons not positioned correctly in the top nav bar #242614Hi!
Maybe try to re-save all theme settings and make sure that you save the “Chinese” settings and the “English” theme settings. Use the language switcher in the admin bar to switch between the different theme settings. If this doesn’t help place following code into the quick css field (Chinese theme settings):
.av_secondary_right .sub_menu { float: left; }
Best regards,
PeterHey themeforesttony!
No, an upload element is not supported by the theme contact form. You can try an advanced contact form plugin like: Formidable or Gravity Forms.
Regards,
PeterHi!
1) Yes – because we deprecated it and you can’t purchase/download the plugin anymore.
3) Please post a link to your icons.
Cheers!
PeterHi!
You can’t simply change the website url. WordPress and our theme use serialized data to store some settings and if you change the website url you also must change the serialized data references. If possible I recommend to switch back to the old url, then import a database backup which you made before you switched the website address, then install this plugin: WP MigrateDB or WP MigrateDB PRO and replace the development server url with the new url ( http://www.contoweb.ch/ ) and export the database. Then import the exported database file again and then you can switch to the new domain. Also see https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684
Regards,
PeterMarch 25, 2014 at 9:58 am in reply to: Possible to change icon color on specific icon boxes? #242599Hi!
1) You can change the font color with:
.main_color .iconbox_icon.heading-color{ color: #ff0000; }
2) Yes exactly. You can use this option to define new widget areas.
Cheers!
PeterHey Labhanshi!
You can use the Gallery Element and this plugin: http://wordpress.org/plugins/wp-gallery-custom-links/ to apply custom image links to your gallery images. You just need to install the plugin, then use the url field to apply a custom link. To use the plugin insert this code into your child theme functions.php (at the very bottom):
add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4); function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $custom_url = get_post_meta($attachment->ID, '_gallery_link_url', true); if(!empty($custom_url)) { $link[0] = $custom_url; $link['custom_link_class'] = 'aviaopeninbrowser'; } return $link; }
If you need help with the gallery paddings please post a link to the final layout which you want to use and give us more details about the styling adjustments.
Cheers!
PeterMarch 25, 2014 at 9:50 am in reply to: Portfolio Entry > Avia Builder > isotope masonry ignoring image selection #242597Hey agbishara!
Great, glad it’s fixed now.
Best regards,
PeterHi!
I noticed two blurry images on your website. One section uses this image: http://sc.preview.addwebtoday.com/wp-content/uploads/2014/03/Schneider-Centre-Office-Ft-Myers.jpg as background. The image size is 598px x 438px and thus the background appears blurry on screens with a higher resolution. The second blurry background (section at the very top) still links to a thumbnail ( http://sc.preview.addwebtoday.com/wp-content/uploads/2013/04/Ft-Meyers-Beach-Plastic-Surgery-300×195.png ). Please make sure that the original image ( http://sc.preview.addwebtoday.com/wp-content/uploads/2013/04/Ft-Meyers-Beach-Plastic-Surgery.png ) is used. Note that this image has a resolution of 1000 x 650px and screens with a high resolution will also display a blurry baxkground. If you want perfect backgrounds you also must use high resolution images with a resolution of 1920px or more.
Best regards,
PeterHey!
In this case please hire a freelance developer. I’m not familiar with the “featured post” plugin and I’m not sure why the code doesn’t work. I recommend to search for a freelancer here: http://www.microlancer.com/ or contact werkpress here: http://kriesi.at/contact/customization
Best regards,
PeterHi outtagear!
I’m not sure if this issue is related to the theme. Did you try to switch to the default TwentyThirteen wordpress theme? Does the theme switch solve the issue(s)? If not please contact the WooCommerce plugin developers: http://www.woothemes.com/support/ because we can only help you with theme incompatibility issues and can’t support the WooCommerce plugin itself.
Regards,
PeterHi Bruno!
1) The feedback box does not support or use bbpress but is a standalone plugin. I’ll mark this thread for Kriesi – maybe he wants to sell it as a standalone plugin in the future. It’s based on our old “Avia Feeback” box plugin: http://aviathemes.com/plugins/avia-feedback-box/ which we deprecated.
2) I think Kriesi just used 4 columns and the “Icon” element with the “Standalone icon” effect: http://www.clipular.com/c/6018634619027456.png?k=XaebxloO7dJw-RqzL4mAGg6F2fA to create this effect.
3) It just means that the theme is compatible with GF and that we added some special style rules for the form elements. We don’t plan to add some special elements for GF.
Best regards,
PeterHi!
Glad you solved the issue :)
Regards,
PeterHey pbennion!
Yes, you could deactivate the hover effect. Open up wp-content/themes/enfold/js/avia.js and delete this line:
avia_hover_effect(container);
Cheers!
PeterHey!
I suggest to wrap your image into a div and then add a custom class to this div. I.e. like:
<div class="my_custom_img"><img src="http://website.com/my_img.jpg" alt="" /></div>
Then open up enfold/js/avia.js and replace:
var logo = $('#header_main .container .logo img, #header_main .container .logo a'),
with
var logo = $('#header_main .container .logo img, #header_main .container .logo a, #header_main .container .my_custom_img img'),
Best regards,
PeterHi Viramedia!
You can try to use the dark lightbox skin. Open up enfold/js/avia.js and replace
elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
with
elements.prettyPhoto({ social_tools:'', theme: 'dark_rounded', slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
or
elements.prettyPhoto({ social_tools:'', theme: 'dark_square', slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
2) Yes, you can link to the fullsize image by adding this code to your child theme functions.php file:
add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4); function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $link = wp_get_attachment_image_src($attachment->ID, "full"); return $link; }
Regards,
PeterMarch 25, 2014 at 9:05 am in reply to: Remove dates displayed in 'Child Latest News' widget? #242578Hi!
Please create me an ftp account and post the login credentials as private reply. I’ll add the code I posted here: https://kriesi.at/support/topic/remove-dates-displayed-in-child-latest-news-widget/#post-241094 to your functions.php file. I know that it works because I also use it on my website without problems.
Best regards,
Peter -
AuthorPosts