Forum Replies Created
-
AuthorPosts
-
Hey Justin!
I think what you’re trying to do is not possible with wordpress and Enfold out of the box and you must hire someone to implement this feature. You can sort the portfolio entries by date or title but then you can’t apply a custom sort order to each portfolio because the title/date order is always the same. If you use the menu_order parameter you can just define one custom order (which will be used on all portfolio pages) because the menu_order value is saved one time for each portfolio entry and you can’t change it based on the portfolio page. You can try to use http://www.nsp-code.com/premium-plugins/wordpress-plugins/advanced-post-types-order/ which at least enables you to apply a custom sort order to category/archive pages and afaik you can set a different order for each category. However this solution introduces another limitation because 1) you can only use it with the archive.php template and 2) you must make sure all portfolio entries share the same category.
Cheers!
PeterJune 30, 2014 at 7:19 am in reply to: Problem mit Masonry – Portfolioeinträge öffnet es nicht in der Lightbox #285075Hey!
Ok, wenn der Filter nicht funktioniert, öffne wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php und ersetze
$custom_link = get_post_meta( $id ,'_portfolio_custom_link', true) != "" ? get_post_meta( $id ,'_portfolio_custom_link_url', true) : false; if($custom_link) $this->loop[$key]['url'] = $custom_link;
durch:
$custom_link = get_post_meta( $id ,'_portfolio_custom_link', true) != "" ? get_post_meta( $id ,'_portfolio_custom_link_url', true) : false; if($custom_link) $this->loop[$key]['url'] = $custom_link; if(!$custom_link) $url = wp_get_attachment_url(get_post_thumbnail_id($id)); if(!empty($url)) $this->loop[$key]['url'] = $url;
Best regards,
PeterHi!
1) Yes, you can change the layout with php code – insert it into the child theme functions.php file:
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); function avia_change_archive_blog_layout($layout, $context){ if($context == 'archive') $layout = 'multi-big'; return $layout; }
2) Yes, you can use this css code to push the read more button down:
.archive .template-blog .more-link { display: block; width: auto; float: left; }
Best regards,
PeterHi!
Please create us an admin account and we’ll look into it.
Cheers!
PeterHi!
Thanks – will be included in the next update.
Best regards,
PeterHi!
Re-sizing the content container itself is not easily possible and would require quite a lot of work (adjustments to the column/grid widths, some shortcode styling changes, etc.). This customization needs to be done by a freelancer and is beyond the scope of our support forum. If you just want to add a padding on the left/right side you can extend the width of the surrounding container and add a padding to it – i.e. like:
.responsive .boxed#top { width: 1440x; padding: 0 155px; }
and you can also apply a background color to it:
.responsive .boxed#top { background: #fff; }
Best regards,
PeterHi lock255!
Simple click the red X to delete them and then add them in the right order again. Alternatively you can change the option values directly and then save the settings.
Cheers!
PeterHey AntonNovikov!
Insert this code into the child theme functions.php or enfold/functions.php file:
add_shortcode('year', function(){return date('Y');});
and then insert the shortcode
[year]
into the copyright text field to show the current year.
Regards,
PeterHi!
No, the child theme style.css doesn’t necessarily import a stylesheet of the parent theme. It depends on the theme code. I.e. for Enfold the Avada code doesn’t work and you can use this code instead:
/* Theme Name: Enfold Child Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then. Version: 1.0 Author: Kriesi Author URI: http://kriesi.at Template: enfold */ /*Add your own styles below:*/
Best regards,
PeterHey mrdonthave!
Afaik you can’t overwrite the methods but you can load a custom version of avia.js from the child theme folder (which will be used instead of the original (parent theme) avia.js. Insert this code:
if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100); function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); wp_dequeue_script('avia-default'); //register js wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, true); wp_enqueue_script( 'avia-default-child' ); }
into the child theme functions.php file and place the custom avia.js file into the child theme folder (wp-content/themes/enfold-child/js/avia.js).
Best regards,
PeterHi!
Yes, if you’re using the template builder you can’t use the “read more” quicktag or generate an automatic excerpt from the content. You must use the excerpt field instead: http://www.clipular.com/c/6700337549279232.png?k=DxIUQQ30PNayVKQ3-5gTYAdxMOY .
Best regards,
PeterJune 27, 2014 at 4:32 pm in reply to: Updated Enfold theme, lost control over header options #284627Hey!
Glad you found a solution :)
Regards,
PeterHi!
Thank you for posting the workaround/solution!
Regards,
PeterHi adrenal!
1) No, as far as I know this is not possible.
2) Read more is only supported by posts and custom post types (i.e. portfolio entries). You can use the “excerpt” field to set the “read more” excerpt textz. Pages do not support “read more” buttons and the feature also wouldn’t make any sense because you can’t add pages to a blog loop like standard posts or custom posts types. I’m also not aware of a plugin which adds this feature to wordpress but you can try to search the plugin repository: http://wordpress.org/plugins/
Regards,
PeterHi Knut!
Dann sollten die deutschen Sprachdateien schon aktiviert sein. Falls diese trotzdem nicht funktionieren erstelle uns bitte einen Admin Account und wir sehen uns die Sache an.
Best regards,
PeterJune 27, 2014 at 2:29 pm in reply to: WordPress SEO by Yoast, SEO title working, Meta description not working. #284574Hey!
No problem ;)
Best regards,
PeterHi!
Yes, each update will overwrite this mod. You can install a child theme and place the code into the child theme functions.php file if you want an update-safe solution. http://kriesi.at/documentation/enfold/using-a-child-theme/
Cheers!
PeterHey!
You can’t increase the height directly but you can add a margin-top (or bottom) to the text and then the height of the surrounding container should also increase. Try this code and adjust the margin if necessary:
.portfolio-entry.grid-content .entry-content-header{ margin-top: 20px; }
Regards,
PeterHey!
Ok, I’ll leave this thread open :)
Best regards,
PeterHi Justin!
1) You can use a 2/3 column element for the slider (i.e. use the AviaSlider) and a 1/3 column for the text on the right side. The included LayerSlider is currently tweaked for Enfold and does only support fullwidth layouts. If you want to use it for a 2/3 column layout you would need to purchase it as a standalone plugin or you can use another slider like Master Slider or Revolution Slider.
2) The events calendar “events” page unfortunately is no page in a classic sense but afaik the plugin creates it dynamically. Thus you also can’t apply sidebar settings, etc. to it because these settings require get_post_meta() http://codex.wordpress.org/Function_Reference/get_post_meta and a page/post id to work. The events page does not have a page id and thus you can’t save or query settings for this page.
Cheers!
PeterHi!
Not sure if this will fix the issue but try to replace the xlink:href attribute with a simple href.
Best regards,
PeterHi!
You can use the code I posted here: https://kriesi.at/support/topic/blog-layout-wiht-read-more/#post-283436 to fetch the excerpt from the “excerpt” option field.
@AdriaWave – I edited the code a bit and now it should not break the masonry grid.Best regards,
PeterHi!
Yes, insert this code into the phone number text field:
<span aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>
Best regards,
PeterHey kops!
1) The Enfold page builder doesn’t support posts. You can just use it with portfolio entries and pages.
2) There’s no real template engine but you can save a group of shortcodes as “template”. Click on the template button in the top right corner of the template builder ( http://www.clipular.com/c/6270636808732672.png?k=kV7fkxLNRMJu1Q0iOZCAxaguJAk ) and then click the “Save Entry as Template” button to save the builder elements as template. If you want to restore the template click the “Template” button again and then click on the name of the template.
Cheers!
PeterHey!
Yes, you need to add these fonts to the website html code first. You can use a plugin like: http://wordpress.org/plugins/easy-google-fonts/ to load the fonts or use the “load google fonts” option field on the layerslider settings page: http://www.clipular.com/c/6588611222831104.png?k=7FbTJ5eutZTGYcfEPbPHwsA8HBc
Just a side note/warning: Each additional font will increase the size of your website and this may cause longer loading times. I wouldn’t add more than one or two fonts…
Cheers!
PeterHey!
I corrected Ismaels code and updated your loop-index.php file: http://afa.862.myftpupload.com/wp-admin/theme-editor.php?file=includes%2Floop-index.php&theme=enfold&scrollto=3490&updated=true
Just copy it into your child theme (wp-content/themes/enfold-child/includes/loop-index.php) and then it’s update safe and the parent theme will not overwrite it.
Best regards,
PeterJune 27, 2014 at 1:18 pm in reply to: prettyphoto product lightbox doesn't show gallery overlay #284520Hey!
Please insert this code into the quick css field:
#top .pp_gallery { display: block !important; }
Obviously Kriesi hided it with css code too ;)
Regards,
PeterJune 27, 2014 at 1:08 pm in reply to: Problem mit Masonry – Portfolioeinträge öffnet es nicht in der Lightbox #284516Hi!
Ich konnte den Fehler nicht reproduzieren und bei mir funktioniert der Code. Bitte verbinde dich mit ftp auf deinem Server, gehe zu wp-content/themes/enfold/functions.php und lade die Datei herunter. Dann öffne diese, lösche den gesamten Code und füge diesen Code ein: http://pastebin.com/raw.php?i=ehaGyWRF . Dann lade die Datei wieder hoch und es sollte funktionieren.
Best regards,
PeterHi!
I’ll ask him to comment on this issue asap.
Cheers!
PeterHey schlafstatt!
Ich kann ohne Admin Account auf diese Seite leider nicht zugreifen (da der Preview Mode für Besucher gesperrt ist). Wir benötigen daher die Login Daten.
Regards,
Peter -
AuthorPosts