Forum Replies Created
-
AuthorPosts
-
Hi!
I believe you’re referring to Functionality, simply install it and activate it on the new site and copy the contents from the old site (Plugins > Edit Functions).
Regards,
JosueJune 4, 2016 at 12:34 pm in reply to: Masonry / blog post list with custom post type and custom fields #642912You are welcome, glad to help :)
Regards,
JosueJune 3, 2016 at 11:26 pm in reply to: Masonry / blog post list with custom post type and custom fields #642752Hi,
Duplicate helper-masonry.php in your child theme and include it from your child theme functions.php:
require("helper-masonry.php");
Best regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avia_social_share_link_arguments', 'modify_pinterest_pattern', 10, 1); function modify_pinterest_pattern($args) { $args['pinterest'] = array("encode"=>true, "encode_urls"=>true, "pattern" => "http://pinterest.com/pin/create/link/?url=[permalink]&description=[title]&media=[thumbnail]"); return $args; }
Cheers!
JosueHey Kevin,
That’s correct. In your child theme you’d need to have a structure similar to:
tag.php archive.php
Then change this part (in each one):
$blog = new avia_post_slider($atts); $blog->query_entries(); $output .= $blog->html();
To:
$blog = new avia_masonry($atts); $blog->extract_terms(); $blog->query_entries(); $output .= $blog->html();
(Make sure you set Blog Grid layout in the Theme Options).
Best regards,
JosueJune 3, 2016 at 2:58 pm in reply to: Masonry / blog post list with custom post type and custom fields #642567Hi,
You’d need to edit
/config-templatebuilder/avia-shortcodes/helper-masonry.php
can you post a link to your site so we can take a closer look?Best regards,
JosueJune 3, 2016 at 2:55 pm in reply to: 4 column sortable Ajax portfolio: space between the items – how to? #642565Hi,
Glad we could help, you can rate us in your Themeforest user Downloads page :)
Best regards,
JosueHi,
Can you please create us a temporary FTP / SFTP account? post it here as a private reply.
Regards,
JosueHey norwestarch,
Have you tried doing it in Products > Categories?
Best regards,
JosueHey,
Place a section after the Maps element and adjust its position with CSS:
#cover_section{ position: absolute; }
Best regards,
JosueHi,
Make sure you’re editing the
entry_with_sidebar
image size, also don’t forget to re-generating the thubmnails.Best regards,
JosueHi,
You could dequeue the parent file with a function like this:
function wp_dequeue_avia_wc() { wp_dequeue_script( 'avia-woocommerce-js' ); } add_action( 'wp_print_scripts', 'wp_dequeue_avia_wc', 100 );
Best regards,
JosueJune 2, 2016 at 3:46 pm in reply to: Adding Google Fonts and accessing the various weights in Advanced Styling #642122You are welcome, glad to help :)
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueJune 1, 2016 at 12:50 pm in reply to: GOT NO ANSWER! – "Enfold Theme & FormCraft3 not working properly! #641430Hey!
Try adding this code to the Quick CSS:
.formcraft-css .fc-form.fc-form-1 .form-element .field-cover input[type="text"], .formcraft-css .fc-form.fc-form-1 .form-element .field-cover input[type="password"], .formcraft-css .fc-form.fc-form-1 .form-element .field-cover input[type="email"], .formcraft-css .fc-form.fc-form-1 .form-element .field-cover input[type="tel"], .formcraft-css .fc-form.fc-form-1 .form-element .field-cover select, .formcraft-css .fc-form.fc-form-1 .form-element .field-cover textarea{ background-color: #3d3d3d !important; }
Cheers!
JosueRemove this from your Quick CSS:
//
Hi,
Yes i missed a character:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { $('.quantity').on('click', 'input[type="button"]', function(){ $('.quantity input[type="text"]').trigger('keyup'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');
Best regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueYou may be able to control that by adjusting dates or tags, i’m not sure if you’d get the same result to be honest, it would require a bit of custom work.
Best regards,
JosueMay 31, 2016 at 2:54 pm in reply to: Exclude "portrait" and "landscape" tags from "You might also like" area #640939FYI, this will be fixed in the next release.
You are welcome, glad to help :)
Regards,
JosueHey,
You can manually import a demo by uploading the .xml files via Tools > Import, you can find the demo .xml files in:
/includes/admin/demo_files
Best regards,
JosueHey,
Do you have any other plugins enabled? something related to TinyMCE perhaps?
Best regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueMay 31, 2016 at 10:57 am in reply to: how to get the ID of the post when you use the “avf_post_slider_entry_excerpt” #640813Hi,
You can use this function to get
the_excerpt
:
https://codex.wordpress.org/Function_Reference/get_the_excerptBest regards,
JosueHi,
Widgets settings are bound to theme name, use this plugin to keep a backup of your Widgets:
https://wordpress.org/plugins/widget-importer-exporter/Best regards,
JosueHey!
User provided isn’t working for me.
Best regards,
JosueHi,
I don’t see it neither but why do you have this code in style.css?
#top #main .avia-section .template-page { height: 10px; margin-top: -16px; }
Removing that and disabling the minimum height on sections will remove the animations.
Best regards,
JosueHi,
Please contact the plugin creator regarding this problem, ask them if there’s a hook to
the_content
that may be adding thesebr
.Cheers!
JosueHey,
Try using a Masonry element build the grid, the captions can be edited to replicate that appareance.
Best regards,
Josue -
AuthorPosts