Forum Replies Created
-
AuthorPosts
-
You are welcome, glad to help :)
Regards,
JosueHi!
Try changing this line:
if($header['header_position'] != "header_top") return avia_header_setting_sidebar($header, $single_val);
To:
if(is_category('slug_category')) $header['header_position'] = 'header_sidebar'; if($header['header_position'] != "header_top") return avia_header_setting_sidebar($header, $single_val);
Regards,
JosueYou could try creating a test php mail and checking how much time takes to load/send the message, and then report that to the provider.
https://www.conetix.com.au/support/article/simple-php-mail-testCheers!
JosueHi!
It did took some time but it’s more of an issue on the server side, i’m afraid there isn’t much we can do from our end to improve the performance, alternatively you could try using a specialized plugin like CF7.
Regards,
JosueHi,
Can you post the link to the page in question please?
Regards,
JosueThat probably happens because even custom URL is “off” the post_meta value is still there so the 2nd conditional still runs, try changing it to:
if($custom_link_url && $custom_link) $this->loop[$key][‘url’] = $custom_link_url; // custom link toggled and URL set, link to URL.
Best regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueI’ve modified the code a bit, can you check it now.
Hi,
Can you please create me a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { $(".pagination a").each(function(){ var theLink = $(this).attr("href"); $(this).attr("href", theLink+"#gallery"); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');
Regards,
JosueApril 6, 2016 at 6:41 am in reply to: Exclude "portrait" and "landscape" tags from "You might also like" area #608691You are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 989px) { .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 153px; } }
Cheers!
JosueHi!
Link the anchors excluding the full URL, like:
#anchor
Instead of:
http://website..com/#anchor
Best regards,
JosueApril 6, 2016 at 2:28 am in reply to: Exclude "portrait" and "landscape" tags from "You might also like" area #608619Hi,
Open related-posts.php and look for this block:
foreach ($tags as $tag) { $tag_ids[] = (int)$tag->term_id; }
Replace it by this:
foreach ($tags as $tag) { $tag_ids[] = (int)$tag->term_id; if($tag->slug == 'landscape' || $tag->slug == 'portrait') array_pop($tag_ids); }
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.wpcf7-form { position: relative; overflow: hidden; } .wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok { position: absolute; right: 0; bottom: 35px; }
Cheers!
JosueHi!
There’s no easy way to do that with the element you’re using but you could switch to the Masonry element, it has an option that let’s you place a “Load More” button that loads new entries via Ajax (without reload).
Regards,
JosueHi Cate!
Header/footer seems to be disabled on single post view.
Regards,
JosueHi,
How long are your forms? can you post the link to your website please?
Regards,
JosueApril 6, 2016 at 2:00 am in reply to: Transferring newly built site from subdomain to active live website #608602Hello Adam,
I’m afraid we won’t be able to help you with this as it is considered outside our support scope ( We can’t help with installation of WordPress itself ). You can request a quote from a third-party provider here.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueOk try with this:
if($custom_link != ''){ $this->loop[$key]['url'] = wp_get_attachment_image_src(get_post_thumbnail_id($id), 'full')[0]; // custom link toggled, link featured img }elseif($custom_link_url != ''){ $this->loop[$key]['url'] = $custom_link_url; // custom link toggled and URL set, link to URL. } else { $this->loop[$key]['url'] = get_permalink($id); }
Should work in the three cases as follows:
1. http://screencast.com/t/lU2XxtTfuGPf
2. http://screencast.com/t/07k7pJVzh
3. http://screencast.com/t/R1wXyIM97cit-
This reply was modified 9 years, 3 months ago by
Josue.
Hi,
Open js/avia.js and look for this block of code:
if(st < 0) st = 0; if(shrinking && !isMobile)
Between those conditionals place
st -= 200;
:if(st < 0) st = 0; st -= 200; if(shrinking && !isMobile)
Change
200
by the number you want to use as an additional space before starting the shrink.Regards,
JosueHi!
There’s no easy way to set a custom class to sub elements but one thing you can do is target them numerically with CSS
nth-child
:.avia-icon-list > li:nth-child(1) {} .avia-icon-list > li:nth-child(2) {} .avia-icon-list > li:nth-child(3) {}
Cheers!
JosueCorrect, that would be it. Also if you’re using a child theme you can have a version of js/shortcodes.js in your child theme directory by adding this to functions.php:
function change_shortcodesjs() { wp_dequeue_script( 'avia-shortcodes' ); wp_enqueue_script( 'avia-shortcodes-child', get_stylesheet_directory_uri().'/js/shortcodes.js', array('jquery'), 2, true ); } add_action( 'wp_enqueue_scripts', 'change_shortcodesjs', 100 );
Hi Taryn!
In the second site, the first column you’re using as a space has some custom padding set to it, remove it.
Regards,
JosueHey!
I’m afraid i don’t quite understand what you want here, you mean some grids should have the modification and some don’t?
- Un-modded: default: permalink if no custom link is set
- Modded: default: full featured image if no custom link is set
Regards,
JosueApril 6, 2016 at 12:24 am in reply to: Making changes on the Layout settings are not saving when editing/creating page #608573Looking forward to hearing from you :)
Regards,
JosueOK, put that in the Google Analytics field in the Theme Options – http://screencast.com/t/jwp1jeDJ
Cheers!
JosueApril 5, 2016 at 2:26 pm in reply to: Making changes on the Layout settings are not saving when editing/creating page #608309Hey!
The problem here is that some configuration on your install / server is not allowing post meta values (or maybe any DB table field) to be empty (Enfold layout options are post meta based). To test this i added a custom field (“test field”) to all pages, i’ve also made a quick video on your install doing the tests with the default theme activated – http://screencast.com/t/gmXwC6VjPEh9. I’d suggest contacting your hosting provider about the issue.
Cheers!
Josue -
This reply was modified 9 years, 3 months ago by
-
AuthorPosts