Forum Replies Created
-
AuthorPosts
-
Hey!
Glad you found a solution :)
Regards,
PeterHi Gurify!
Yes :) – this thread answers your question: https://kriesi.at/support/topic/related-posts-based-on-category-2/
Regards,
PeterJune 23, 2014 at 9:02 am in reply to: How Can I Get The Event Page To Show On The Title Header? #282308Hey VictoriousC!
If you want to change the title of the events page this post: https://kriesi.at/support/topic/enfold-and-the-event-calendar-plugin/#post-174332 will help you.
Best regards,
PeterHey dewasurya!
You can try to use a media query to resize the panopress container like:
@media only screen and (max-width: 767px) { #top #wrap_all .pp-embed{ height: 200px; } }
and replace 200px with your custom height value and adjust the screen size value (767px) if necessary. If the code doesn’t work you can also try to add !important to the height value ( height: 200px !important; ).
Cheers!
PeterJune 23, 2014 at 8:57 am in reply to: Query: how to enter privacy policy and terms&conditions within Socket #282304Hey curmi01!
I suggest to add the html code/links to the copyright field: Enfold > Theme Options > Footer Layout
A sample code snippet for links can be found here: http://www.w3schools.com/tags/att_a_href.aspBest regards,
PeterHey Frederic!
Try to clear the browser cache and wordpress cache (W3TC or supercache) if necessary.
Cheers!
PeterJune 23, 2014 at 8:52 am in reply to: limeplugin and enfold theme distort woocommerce checkout #282300Hi!
I don’t think the calculation is affected by the css code. If the calculation doesn’t work it’s a plugin issue and you need to contact the author of the plugin. To hide the input fields on the checkout page use this code:
.woocommerce-shipping-fields .deposit_amount_hidden, .woocommerce-shipping-fields .remaining_balance_hidden, .woocommerce-shipping-fields .total_order_cost_hidden{ display: none !important; }
Cheers!
PeterHey luoja!
1) You can change the color with css code – insert it into the quick css field:
#top .alternate_color .av_promobox{ background: #fff; }
2) You can use the magazine element: https://www.clipular.com/c/5059415027744768.png?k=txZCYIFWj6SAWun0ojlbjhmbqDQ to add a magazine to your page template. If you can’t find this element please update Enfold to the latest version. To make the header transparent use the layout options on the editor screen: https://www.clipular.com/c/4758578539790336.png?k=HyEjJDxM-W6j7lmy9CU9KgQDDlo
Regards,
PeterHey!
You can try to trigger resize event on page load – use this code:
add_action('wp_head','avia_print_script', 10); function avia_print_script() { if(! is_page(2980)) return; echo "<script>"; echo "setTimeout(function(){ jQuery(window).trigger('resize'); },100);"; echo "</script>"; }
or
add_action('wp_head','avia_print_script', 10); function avia_print_script() { if(! is_page(2980)) return; echo "<script>"; echo "setTimeout(function(){ window.dispatchEvent(new Event('resize')); },100);"; echo "</script>"; }
and insert it into the enfold/functions.php file or your child theme functions.php. Note that you might need to change the page id (2980) if you move the masonry gallery to another page.
Best regards,
PeterHey Jamanius!
I suggest to install a seo plugin like: http://wordpress.org/plugins/wordpress-seo/ . It enables you to change the description and many other meta tags (og:meta, robots, etc.) for each post/page.
Best regards,
PeterHey!
This is not possible at the moment and would require some customization work. You can suggest the “pre-selected filter” feature here: https://kriesi.at/support/enfold-feature-requests/ though.
Best regards,
PeterJune 23, 2014 at 8:00 am in reply to: Incorporating video into a color area or otherwise and playing command vs auto #282287Hey!
Please try to place the video into the color section, then add a custom id to the section ( http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png ) – i.e. “fullwidth_video_section”. Then insert this code into the quick css field to stretch the video
#fullwidth_video_section .container, fullwidth_video_section iframe{ width: 100%; }
and replace “fullwidth_video_section” with your custom id if necessary.
Best regards,
PeterHey!
1) There’s no setting for the sidebar/content width. You can use the code Ismael posted here: https://kriesi.at/support/topic/creating-and-using-a-different-sidebar/#post-282111 to change the sidebar width. If you want to change it again you need to edit the code. You can place the code into the functions.php file (child theme functions.php or enfold/functions.php).
2)
function avia_increase_sidebar_size() { global $avia_config; $avia_config['layout']['fullsize'] = array('content' => 'twelve alpha', 'sidebar' => 'hidden', 'meta' => 'two alpha', 'entry' => 'eleven'); $avia_config['layout']['sidebar_left'] = array('content' => 'eight', 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight'); $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha', 'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha'); } add_action( 'init', 'avia_increase_sidebar_size', 1);
To change the sidebar size you need to replace “eight” and “four” with a different value. I.e. change “eight” to “nine” and “four” to “three” to decrease the width of the sidebar. You can also replace “eight” with “seven” and “four” with “five” to increase the width of the sidebar. Note that you must not exceed the width of “twelve” units because our css grid just supports twelve units in one row. If you want to change the sidebar size for a certain post type only add a post type check to the function like:
function avia_increase_sidebar_size() { global $avia_config; if(get_post_type() != "mycpt") return; $avia_config['layout']['fullsize'] = array('content' => 'twelve alpha', 'sidebar' => 'hidden', 'meta' => 'two alpha', 'entry' => 'eleven'); $avia_config['layout']['sidebar_left'] = array('content' => 'eight', 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight'); $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha', 'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha'); } add_action( 'init', 'avia_increase_sidebar_size', 1);
and replace “mycpt” with your post type.
3) By default Enfold supports the layout options only for posts and pages because you must create a custom template (i.e. based on page.php and loop-page.php or single.php and loop-index.php) to use the layouts with another post type. Then you can use this code:
add_filter('avf_builder_boxes','custom_post_types_options'); function custom_post_types_options($boxes) { $boxes[1]['page'][] = 'mycpt'; return $boxes; }
to add the layout options to the cpt editor screen. Probably these options won’t work properly if you do not use a cpt template based on page.php and loop-page.php or single.php and loop-index.php…
Regards,
PeterHey!
Yes, use this code:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { if(is_singular('portfolio')) { $content = avia_social_share_links(array(), false) . $content; } return $content; }
Regards,
PeterHey!
Yes, I’m pretty sure qtranslate does not fully work with Enfold. We decided to support WPML only (at least for now) because it’s a premium plugin with a support and developer team behind it.
Regards,
PeterHi!
Typically your symptoms sound like a permalinks issue. So try going to your Settings>Permalinks and then saving them as default. Check that the url is working and then re-save with your previous settings. That will ‘flush’ the permalink settings. If the page still doesn’t work it’s probably an incompatibility issue between Enfold and qtranslate. If that’s the case you need to switch to WPML or use another theme which officially support qtranslate. We do not support qtranslate at the moment and we also don’t have plans to support it in the future.
Best regards,
PeterHey gdioletis!
Please create me an admin account and post a link to the maps page. I did a quick test on my server http://test.inoplugs.com/agb-2/ and wpgmaps seems to work just fine – even if I use the Avia Map on the same page (second map).
Best regards,
PeterHey elad0708!
Enfold is not backwards compatible with older themes like Corona or Replete. Enfold is the first theme which includes the “Avia Advanced Layout Builder” and this layout builder uses different shortcodes and a different template/layout logic than older themes like Corona. This (unfortunately) means you must build the pages again and replace the Corona shortcodes with the Enfold template builder shortcodes. Personally I recommend to copy the theme/plugin/wordpress files to a test/developer server, then export the database of the production website with WP MigrateDB or WP MigrateDB PRO and replace the url/domain of the production server with the testserver url. Then import the database file on your test server (i.e. with phpmyadmin) and rebuild/edit the pages with the new Enfold template builder. Afterwards make a backup of your production server files and database, copy the files from the test server to the production server and import the database from the test server on your production server.
Regards,
PeterHi!
You can find some plugins in the plugin repository – i.e. http://wordpress.org/plugins/wp-recaptcha/
Cheers!
PeterHi!
Try to insert this code into the child theme functions.php file and replace (Email address hidden if logged out) with an email address which contains the goddessembrace.com tld (i.e. (Email address hidden if logged out) , etc.). Some host/server provider do not allow you to send emails with different tlds to prevent spams and “fake emails” and the only way to bypass the limitation is to use an email address which contains your tld ( @goddessembrace.com ) to send the emails.
add_filter('avf_form_from', 'avia_change_from', 10, 3); function avia_change_from($from,$new_post,$params){ global $avia_config; $avia_config['from_email_address'] = $from; $from = ' (Email address hidden if logged out) '; return $from; } add_filter('avf_form_autoresponder_from', 'avia_change_autoresponder_from', 10, 3); function avia_change_autoresponder_from($from, $new_post, $form_params){ global $avia_config; if(isset($avia_config['from_email_address'])) $from = $avia_config['from_email_address']; return $from; }
Best regards,
PeterHey!
No, unfortunately not because your host/server does not allow you to send emails with a different tld. This policy/restriction should prevent spams but it also means that the email sender (“from”) must be a @localmotionent.com email address. The only way to direct that email to the address that the user enters in the “Email” field is to replace the email address manually when you answer the mail.
Best regards,
PeterHi chanchogc!
If both plugins don’t work you probably need to check the server configuration. Gravity Forms and our contact form use the standard wp_mail function: http://codex.wordpress.org/Function_Reference/wp_mail to send emails and there’s nothing we can change in our code to “fix” the sending process. The only recommendation I can give you at this point is to contact the server administrator and to ask him to check the server configuration and to compare the configuration of your two websites.
Regards,
PeterHi!
You must delete the wp-content/themes/enfold/taxonomy-portfolio_entries.php template inside the enfold folder – then WordPress will use the default archive template for portfolio categories too. You can also place the taxonomy-portfolio_entries.php file into the child theme folder and replace the code inside the file with the code of archive.php. Then replace:
get_template_part( 'includes/loop', 'index' );
with
avia_config['blog_style'] = "single-small"; get_template_part( 'includes/loop', 'index' );
to switch to the right blog/archive layout.
Cheers!
PeterHi!
I updated the code – please try it again.
Best regards,
PeterHey!
Great, glad it worked for you too :)
Best regards,
PeterHey svdevelopment!
Enfold supports WPML which enables you to translate each post/page or custom post type (i.e. portfolio entries). There’s no easier way to translate your website at the moment. A different way is to use a plugin like: http://marketpress.com/product/multilingual-press-pro/ but we didn’t test it extensively with Enfold and we don’t support it officially (which means we don’t provide support if you encounter an incompatibility issue).
Cheers!
PeterHey!
If you want to add some custom content (description, etc.) to the category page you can use the category description option field: https://www.clipular.com/c/6172894090493952.png?k=iBd7tp-_wuMJUHfgYlUjzyiVkzg
The category title will show up in the breadrumb/title area like here: http://kriesi.at/themes/enfold/portfolio_entries/css/
If you want to edit the portfolio grid templates you need to edit wp-content/themes/enfold/taxonomy-portfolio_entries.php for the surrounding container and wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php for the portfolio grid.Best regards,
PeterHey Mario!
You can try to switch the arrow position – please place this code into the child theme functions.php file enfold/functionsphp:
add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2); function avia_apply_custom_sort_order_to_post_nav($entries, $settings) { $temp_prev = $entries['prev']; $temp_next = $entries['next']; $entries['prev'] = $entries['next'] = ""; if(!empty($temp_next)) $entries['prev'] = $temp_next; if(!empty($temp_prev)) $entries['next'] = $temp_prev; return $entries; }
Best regards,
PeterHey phspeck1!
If you accidentally edited one or more theme files try to re-install the theme with ftp. Download the latest theme version from themefores.net and then use Filezilla (or another ftp client) to upload the theme files to your server. Devin created a short tutorial video: https://vimeo.com/channels/aviathemes/67209750 which helps you if you’re not familiar with ftp.
Best regards,
PeterHi!
Thanks for providing your code!
Cheers!
Peter -
AuthorPosts