Forum Replies Created
-
AuthorPosts
-
Hi heikilaja!
The “open the entry on a new page” won’t change the link target (same tab/window or new tab/window) but it tells the theme to open the single entry immediately without the ajax effect (i.e. see: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/ where the ajax preview will pop up first). If you want to open your custom link in a new tab/window open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace
$output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' $target title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
with
$target = !empty($custom_link) ? "target='_blank'" : ''; $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' $target title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
Cheers!
PeterHi!
I compared Chrome and IE11 and both give me the same result. Please try to clear the browser cache – maybe your IE still displays the old styling. You can also make the code more specific with the browser class:
.avia-msie-11 .iconbox_content_container a img, .avia-msie-11 .iconbox_content_container img { width: auto; max-width: 100%; }
Best regards,
PeterHey!
1) The fade in affect does not affect the filters. However you can reduce the number of items and then the portfolio script will initialize faster and the filter links will be ready 1-2 seconds after the page loaded.
2) Please add this code into the quick css field
.sidebar_tab .tab_titles { min-width: 170px; max-width: 250px; }
and change the min-width and max-width value if necessary. I.e. set the max-width value to 200px and the tabs will shrink a bit.
Cheers!
PeterFebruary 13, 2014 at 8:28 am in reply to: Bug: No Post-Intro (via more-tag) ist shown when using AVIA Layout Builder #223264Hey!
Try following code
add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1); function avia_category_content_filter($current_post) { global $avia_config; global $more; $more_bak = $more; if(!is_single()) { $more = 0; $current_post['content'] = strip_tags (get_the_content('')); $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>'; $more = $more_bak; } return $current_post; }
Best regards,
PeterHey!
Hast du probiert das “Auszug” Optionsfeld für das Excerpt zu nützen?
Regards,
PeterHey!
No, unfortunately I never received an answer from the wishlist developers and it seems like they’re not interested in a cooperation. I recommend to try another membership plugin like s2members: http://wordpress.org/plugins/s2member/ or http://wp-member.com/ because I drop the ball at this point.
The color section and all other fullwidth elements (like fullwidth masonry grid or fullwidth Layerslider) are not available as shortcodes because they require a special page template which is not compatible with the default page template and thus you can’t embed it into the page content.
Regards,
PeterHi!
Vielen Dank für den Hinweis. Ich habe es nun korrigiert.
Best regards,
PeterHey!
Probably you overwrote the functions.php file with the theme update. Please add this code at the very bottom of functions.php to activate the custom css option again
add_theme_support('avia_template_builder_custom_css');
Best regards,
PeterHi!
This seems to be a general issue because the default embed shortcode: http://codex.wordpress.org/Embeds
[embed] http://www.youtube.com/watch?v=5wyL4k6Gxt8 [/embed]
also doesn’t work. I also tried to add this shortcode to a default page (default editor mode: http://www.ronald-fong.com/demo-reel-test/ ) and to switch to the default theme ( http://www.ronald-fong.com/wp-admin/themes.php ) and the videos still don’t work. So it’s definetely no theme issue but your server/wordpress installation doesn’t support the oembed protocol which is required to fetch the video data. I recommend to contact the host/server administrator to check the configuration.
Cheers!
PeterHi!
I think I found the bug. We’ll correct it with the next update. For a quick fix open up enfold/config-templatebuilder/avia-shortcodes/iconbox.php and replace
$display_char_wrapper['start'] = "a href='{$linktitle}' title='".esc_attr($linktitle)."' {$blank}";
with
$display_char_wrapper['start'] = "a href='{$link}' title='".esc_attr($linktitle)."' {$blank}";
Cheers!
PeterFebruary 12, 2014 at 10:32 am in reply to: enfold reach the limit of server's cpu and memory usage #222669Hey!
I can’t view it “Error, this is a private paste. If this is your private paste, please login to Pastebin first.”.
Regards,
PeterHey!
It seems like Jetpack triggers a warning and this is not a theme issue. You should be able to get rid of them by deactivating the debug mode (see: http://codex.wordpress.org/Editing_wp-config.php#Debug – the “WP_DEBUG” constant in wp-config.php must be set to false) and if this doesn’t help try to insert
error_reporting(0);
at the very bottom of enfold/functions.php. If it doesn’t work please report this as a plugin bug to the Jetpack developers…
Regards,
PeterHey!
You could select the “Don’t show the images at all and display the preview text only” option: http://www.clipular.com/c/6453051829256192.png?k=5TIdSdjsRn87CQytVuQeUU4899A
By going this way Enfold will stretch the content area of the ajax preview to 100% width and you can use the new space to build your custom layout. I.e. use the gallery shortcode to build the layout/template you requested in your post (select “Use Lighbox” – “No, don’t add a link to the images at all”).
Best regards,
PeterHi!
Please add this suggestion to the feature request thread: https://kriesi.at/support/topic/enfold-feature-requests/ – at the moment the layout builder doesn’t support nested columns.
Best regards,
PeterHey pako69!
You can edit sidebar.php – open up the file and delete
//global sidebar if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif;
Then replace
$custom_sidebar = "";
with
$custom_sidebar = ""; //global sidebar if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif;
Regards,
PeterFebruary 12, 2014 at 10:09 am in reply to: Dummy Data sql file import error #1062 – Duplicate entry '1' for key 'PRIMARY' #222648Hi!
Please try to re-save the page – does this solve the issue?
Regards,
PeterHey AdFX!
The portfolio thumbnail size is defined in functions.php – search for
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
Make sure that your images have a size of at least 495 x 400px or WordPress won’t generate a thumbnail. This can result in an uneven grid like here: http://ak5.pl/sk4.html
If you want to change the thumbnail size I recommend to install: http://wordpress.org/plugins/simple-image-sizes/ and then use: http://wordpress.org/plugins/regenerate-thumbnails/ to regenerate the thumbnails.
Regards,
PeterHi!
Great :)
Cheers!
PeterHi!
If you don’t want to show the portfolio grid page in the breadcrumb but just the portfolio categories of the current entry you can use the code I posted here https://kriesi.at/support/topic/breadcrumbs-with-portfolio/ – by going this way the breadcrumbs will always have the same structure but you can’t show the portfolio grid pages in the breadcrumb.
Regards,
PeterHi!
I found the problem – the image works now: http://prolinpro.prlncms.com/oh-you-wanted-fries-with-that/
You must insert an absolute url to the image. I changed the url from
prolinpro.prlncms.com/wp-content/proimages/safe01.gif
to
http://prolinpro.prlncms.com/wp-content/proimages/safe01.gif
and it works now. Just make sure that you don’t forget the http:// protocol.
Regards,
PeterHi kriru!
I think the thumbnails are missing. Try to regenerate them with: http://wordpress.org/plugins/regenerate-thumbnails/
A possible css fix would be:
.news-thumb { max-width: 36px; }
– insert this code into the quick css field.
Regards,
PeterFebruary 12, 2014 at 9:39 am in reply to: while logged in "animated-pictures/icons" are not shown/moving in #222623Hey Liminalty!
Maybe a browser or wordpress extension causes this issue? I didn’t notice such an issue on my test servers or the demo website yet. Try to deactivate all browser extensions an wordpress plugins and check if this solves the issue. If yes activate them one by one to find the culprit.
Regards,
PeterFebruary 12, 2014 at 9:26 am in reply to: enfold reach the limit of server's cpu and memory usage #222613Hi!
You can use pastebin: http://pastebin.com/ or https://gist.github.com/ to post the protocols. If you want to avoid that other users can read it please use the ” Set as private reply” checkbox.
Best regards,
PeterHi!
I can’t reproduce the issue on my android 4.1 phone – all menu items are clickable and if I click on an item the page scrolls to the right position and the menu fades out. I’ll tag it for Devin – he can test the website with an ipad.
Cheers!
PeterHey wethepublic!
I can’t find the 4 columns – did you remove the images? You can reduce the margin with this code:
div .flex_column.av_one_fourth { margin-left: 6%; }
-insert it into the quick css field. By default it’s 6% but you can i.e. set it to 1%.
Regards,
PeterHi!
Great work :)
Cheers!
PeterThis reply has been marked as private.Hey!
The “Insert PHP” plugin seems to overwrite the excerpt with the post content and this breaks the excerpt function. I deactivated the plugin and the excerpt started to work. I recommend to try another plugin like: http://wordpress.org/plugins/insert-php-code-snippet/
Cheers!
PeterHi!
Adding a custom menu or widget area is not easily possible because it would require additional styling, additional php code, etc. and this customization is beyond the scope of our support forum. You can use Ismaels code above to change the breadcrumb and if you want to display different content on different pages use the is_page() conditional http://codex.wordpress.org/Conditional_Tags#A_Single_Post_Page
to check the id of the current page – the code would look like:add_filter('avf_title_args', 'avf_change_breadcrumb', 10, 2); function avf_change_breadcrumb($args,$id) { if($args['breadcrumb'] == true) { $args['breadcrumb'] = false; $args['title'] = ''; $args['html'] = "<div class='{class} title_container'><div class='container'>PLACE THE DEFAULT MENU HERE</div></div>"; if(is_page(array(17,9))) $args['html'] = "<div class='{class} title_container'><div class='container'>PLACE THE MENU FOR PAGE 17 and 9 HERE</div></div>"; } return $args; }
Best regards,
Peter -
AuthorPosts