Forum Replies Created
-
AuthorPosts
-
July 29, 2014 at 4:35 pm in reply to: intermittent problem with parallax color section since last Enfold update #297335
Hey mantisjitsu!
Is there any easy way to reproduce the issue? I reloaded the page around 30 times, clear the cache, etc. but I’m not able to reproduce the issue with Chrome on Win8 at all. I didn’t try Firefox or other browsers though. Maybe a browser extension breaks the website?
Cheers!
PeterHi alwo!
Yes you can use a filter to change the thumbnail size – insert this code into the child theme functions.php (or enfold/functions.php) file:
add_filter('avf_magazine_settings', 'avia_magazine_thumbnail', 10, 2); function avia_magazine_thumbnail($atts, $magazine){ $atts['image_size']['small'] = 'square'; return $atts; }
You can replace “square” with another thumbnail size like: ‘masonry’, featured’, ‘featured_large’, ‘portfolio’, ‘gallery’, ‘entry_with_sidebar’,’entry_without_sidebar’,extra_large’ or “magazine”
Best regards,
PeterHi tvlleaders!
You can use the menu builder (Appearance > Menus) to build a custom menu. The menu builder also supports sub-menu items – just drag’n’drop the menu item to the right side – it will then shift to the right and you’ll notice it now “sticks” to the parent item. You can also add portfolio categories to the menu. If you can’t see the portfolio category select box click on “Screen Options” in the top right corner and tick the checkbox next to “Portfolio Categories”. Then a new option field will show up and you can add these categories to the menu.
Regards,
PeterHi hamiltonbuchanan!
Unfortunately you can’t add the social icons between two template builder elements. You can only append it at the very bottom of the page. However you can remove the “Comments” element from the template and use this modified function:
add_action('ava_after_content', 'avia_add_social_toolbar', 10, 2); function avia_add_social_toolbar($id = "", $context = "") { if($context == "page" || $context == "single-portfolio") avia_social_share_links(); } add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { $content .= avia_social_share_links(array(), false); $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>'; $content .= do_shortcode('[av_comments_list]'); return $content; }
to display the comments template below the social icons. You can see the results here: http://hiperatividade.pt/hiper/
Regards,
PeterHi Animationink!
Insert this code into the child theme functions.php or enfold/functions.php file:
add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2); function avia_change_title_tag($title, $wptitle) { $title = str_replace('|', "", $title); return $title; }
Regards,
PeterJuly 29, 2014 at 12:01 pm in reply to: MY PIECE OF ADVICE: "WP FASTEST CACHE" PLUGIN WORKS GREAT w/ENFOLD #297254Hey!
Thanks for sharing your experience :)
Best regards,
PeterHi!
I set the reply to “public”.
Cheers!
PeterHi blacktagdesign!
The warning session_start(): session_start() [function.session-start]: open(/tmp/sess_609bac42dcfe804005c13abd339e2cd0, O_RDWR) failed: Permission denied (13) tells you that the server can’t write or create a session file because the permission of the tmp folder doesn’t allow it. You must contact the server administrator and ask him to fix the folder permissions. Alternatively you can deactivate all theme sessions with this code (add it to the theme functions.php):
add_theme_support('avia_no_session_support');
but this may break the portfolio breadcrumbs which sometimes rely on sessions. In addition it doesn’t solve the issue that your server can’t write/use php sessions at the moment.
Cheers!
PeterHey simonac!
We only support WPML and it’s the recommended method. Creating a subdomain is also possible but you would need to purchase another license because it it requires another wordpress install or blog instance and it’s also harder to maintain (doubles the work actually because you need to upload all media files two times, etc.).
Cheers!
PeterHey wawrzy!
We don’t have such a theme in our portfolio but afaik you can use WooCommerce extensions (i.e.: http://www.woothemes.com/products/ajax-layered-navigation/ ) to add these features to any theme. However note that these extension rely on the default archive and product templates and you can’t combine them with Advanced Layout Builder templates or elements (i.e. they want sort/filter “product grid” elements or “product slider” elements but just standard product/shop archive pages).
Regards,
PeterJuly 28, 2014 at 5:17 pm in reply to: Hinzufügen der Search-Funktion (Lupen-Symbol) in ein eigenes Menü #296890Hey fwbecker!
Ich kenne mich leider mit diesen Plugin nicht aus, aber vermulich muss man den “theme location” Wert anpassen. In wp-content/themes/enfold/functions-enfold.php suche nach:
if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
und ersetze “avia” durch den theme location Wert des zen plugins. Falls dieser nicht bekannt ist kann ich nur raten den Plugin Entwickler zu kontaktieren – vielleicht kann dieser darüber Auskunft geben. Man kann den Code von oben auch durch:
if ((is_object($args)) || (is_string($args) && $args = "fallback_menu"))
ersetzen, um diese theme location Abfrage komplett auszubauen. Der Nachteil ist aber, dass WordPress nun überall (bei jedem Menü) dieses Icon anhängt und zB in Sidebar oder Widget Menüs ist dies ja unerwünscht…
Regards,
PeterHi heufti65!
1) The new lightbox unfortunately does not support a description text over the image. You can suggest it as a new feature here: https://kriesi.at/support/enfold-feature-requests/ and Kriesi will look into it if more user request it.
2) adding Popups to videos is currently not possible because the click event is used for the player/video controls. Slideshows should support image popups, etc. – you just need to select the “lightbox” link option: https://www.clipular.com/c/4962775424040960.png?k=qqpJZmhkvvwbX4n4xUPuKMVXPNc
3) The best solution would be to add a gallery to the text content. The lightbox will automatically group the images and the user can go to the next/prev image with the lightbox navigation buttons.
Regards,
PeterJuly 28, 2014 at 5:04 pm in reply to: Enfold new light box magnific Popup – you tube video URLS #296882Hey!
Unfortunately the magnific popup plugin is quite limited when it comes to youtube urls. The embed url is harcoded in the js source code and you can not change it with the video element or wordpress settings. If you want to add additional parameters like the rel=0 parameter open up wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js and search for:
//www.youtube.com/embed/%id%?autoplay=1
Add your custom parameters to this url – i.e. like:
//www.youtube.com/embed/%id%?autoplay=1&rel=0&autohide=1&showinfo=0&fs=1
and save the jquery.magnific-popup.min.js file. Afterwards the lightbox should load the right player based on the parameters you added to the url.
Best regards,
PeterHey!
Yes, open up wp-content/themes/enfold/config-woocommerce/config.php and replace:
return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s" rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);
with
return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom noLightbox" title="%s">%s</a>', $image_link, $image_title, $image);
and:
$img = sprintf( '<a href="%s" class="%s" title="%s" rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_title, $image );
with
$img = sprintf( '<a href="%s" class="%s noLightbox" title="%s" rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_title, $image );
If you want to overwrite the default code with a child theme add the avia_woocommerce_gallery_thumbnail_description() and avia_woocommerce_post_thumbnail_description() function to the child theme functions.php file and modify the code there.
Regards,
PeterHi!
Glad you eventually got the website running again :)
Best regards,
PeterHi Frank!
Please create us an admin account. We need to check the configuration on the admin page first hand.
Cheers!
PeterHi!
A custom stylesheet/css code hides the related posts: http://zelenopol.net/wp-content/blogs.dir/1/micro-themes/active-styles.css?ver=3.9.1 with
div.related_posts { display: none!important; }
Remove this code or insert following css code into the quick css field:
#top #wrap_all div.related_posts { display: block !important; }
Cheers!
PeterJuly 28, 2014 at 4:37 pm in reply to: Change Blog – latest posts and Archive for category in child-theme functions #296854Hey!
Try this code – insert it into the 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_category() ) { $output = __('Archive for category:','avia_framework')." ".single_cat_title('',false); } elseif (is_day()) { $output = __('Archive for date:','avia_framework')." ".get_the_time( __('F jS, Y','avia_framework') ); } elseif (is_month()) { $output = __('Archive for month:','avia_framework')." ".get_the_time( __('F, Y','avia_framework') ); } elseif (is_year()) { $output = __('Archive for year:','avia_framework')." ".get_the_time( __('Y','avia_framework') ); } if(!empty($output)) $args['title'] = $output; return $args; }
Regards,
PeterHey!
Ich habe jetzt leider keine Möglichkeit gesehen dies zu verändern. Wir verwenden hierfür die Standard-WooCommerce Templates. Die einzige Lösung, welche ich anbieten kann ist folgender CSS Code:
@media only screen and (max-width: 768px) { #top .variations td.label { display: none; } }
welcher die Beschriftung auf kleineren Displays ausblendet.
Regards,
PeterHey!
I didn’t test Josues code but it should add iframes support to the lightbox. You can make a backup of the avia.js file if you want to be on the safe side.
Cheers!
PeterHey!
Yes, the “Leave a reply” headline will be displayed if the comments are activated. You can hide it with css but then it will be hidden even if some comments/messages already exist.
Best regards,
PeterHey sureshakula!
The breadcrumb structure and the permalink structure are independent from each other and they may vary from each other. If the breadcrumb structure of the post doesn’t work as intended (like on the demo page here: http://kriesi.at/themes/enfold/2014/04/28/new-electric-cars-are-getting-really-fast/ ), make sure the Blog page is set on the theme options page (Enfold > Theme Options). The structure should be
Home > Blog Page Title (Link) > Category (Link) > Post Title
Regards,
PeterHi Arran!
1) Please try to use the Codestyling plugin to translate or change existing text strings. Download and 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/change the text strings from the “avia_framework” textdomain (i.e. search for “read more” and in the right column insert “Keep Reading”). At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).
2) Which blog layout do you use? You can deactivate the image link with css code (which may vary based on the blog layout). For the default layout you can use this code – insert it into the quick css field:
.single .big-preview.single-big { pointer-events: none; }
Cheers!
PeterHi!
Try this css code and insert it into the quick css field:
.html_header_top.html_bottom_nav_header #header_main { display: none; } .html_header_top.html_header_topbar_active.html_header_sticky.html_bottom_nav_header #top #main { padding-top: 72px; } .ubermenu .ubermenu-item.ubermenu-item-level-0 { margin-top: -15px; }
Cheers!
PeterHi davisar!
1) No, the masonry blog can’t be used with child categories on archive pages, etc. It would be possible to implement such a feature but it would require some work + time and a skilled developer/freelancer. If you need help I suggest to hire a freelancer here: http://studio.envato.com/ or here: http://kriesi.at/contact/customization
2) Yes, you can select a different taxonomy (and terms) on the option screen: https://www.clipular.com/c/5740335766437888.png?k=4CNosjwEHAq24HQlvOG8DjWak1s
Regards,
PeterHey!
I couldn’t find any obvious reasons for the permalink, etc. issues and I’m pretty sure it’s a htaccess or php.ini configuration issue. If the web hosting support claims it’s not server related (which pretty sure is the case if wordpress with the default theme, etc. doesn’t work) I suggest to switch to another server/host provider which supports WordPress and all the default features (pretty permalinks, etc.) out of the box.
Cheers!
PeterHi!
1) I uploaded the files here: https://www.mediafire.com/?4xvw8la68gv824t
2) You just need to unzip the sensei.zip file and upload the unpacked sensei folder into the wp-content/themes/enfold/ folder.
3) Yes, if you use the automatic theme update feature of wordpress. No if you update the theme files with ftp (just overwrite the existing theme files on your server): https://vimeo.com/channels/aviathemes/67209750
4) I added this code into the quick css field to fix the comments styling:
#top.single-lesson #comments{ clear: both; padding-top: 20px; }
5) I noticed someone added php code into the quick css field – that’s not possible. You can place the php code into the enfold/functions.php file or child theme functions.php file but the quick css field will not execute or accept any php code. For reference I attached the php code below…
// dave add published comments. add_action('sensei_single_main_content', 'dc_add_comments_to_template'); function dc_add_comments_to_template() { //Gather comments on the post $comments = get_comments(array( 'post_id' => get_the_ID(), 'status' => 'approve' //Change this to the type of comments to be displayed )); //Display the list of comments echo '<div class="entry-comments"><ul>'; wp_list_comments(array( 'per_page' => 10, // Allow comment pagination (optional) 'type' => 'comment', // Very important! Otherwise you get Woo's comments for some internal process. 'reverse_top_level' => false // Show the latest comments at the top of the list ), $comments); echo '</ul></div>'; } // end of dave's code
Regards,
PeterHey tocal!
It’s not possible to import these options with a json file. You can either stick with your plugin or use the “Color Saturation”, etc. options on the element option screen: http://www.clipular.com/c/4778796204949504.png?k=oFfIVqM7DkV6_VK_4opn8B_7fhE
Best regards,
PeterHey!
In fact it should be possible to use the “Google analytics” option field on the Enfold > Theme Option page. If you want to embed the code in the head area just add this code to the child theme functions.php file:
add_action('after_setup_theme','avia_change_analytics_pos', 10); function avia_change_analytics_pos() { remove_action('wp_footer', 'avia_print_tracking_code'); add_action('wp_head', 'avia_print_tracking_code'); }
You don’t need to copy the parent theme functions.php code – just create a new functions.php file, add the
<?php
tag to the very top of the file and then use the code I posted above.
Regards,
Peter -
AuthorPosts