Forum Replies Created
-
AuthorPosts
-
Hi,
Can you post a link to the site?
Best regards,
JosueHey,
I’m afraid we may not be able to help you with this as it’s more of a WordPress issue, try looking for a permalink plugin:
https://wordpress.org/plugins/tags/permalinkBest regards,
JosueMay 28, 2016 at 2:12 pm in reply to: Enfold blocking Add to Cart function on Foodpress Plugin #639771Hey,
Sounds like a theme-plugin issue indeed, try disabling enfold’s WC Js modifications, go to
/config-woocommerce/config.php
and remove/comment:wp_enqueue_script( 'avia-woocommerce-js', AVIA_BASE_URL.'config-woocommerce/woocommerce-mod.js', array('jquery'), 1, true);
Best regards,
JosueHey,
Could be possible with that or with a Widget Menu, build the page and hand us a link so we can see what can be done.
Best regards,
JosueHi,
Please try adding this at the very end of your themes / child themes functions.php file:
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');
If you’re not using a child theme you can use this plugin to store custom functions like that.
Best regards,
JosueHey Natesh,
Have you tried disabling the responsive option in Theme Options > Layout Options?
Best regards,
JosueHi,
Try disabling minimum height in that section.
Best regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed? also check if the issue persists with the default theme activated.
Regards,
JosueMay 28, 2016 at 11:10 am in reply to: I've read the post, and still cannot get images in my slider to show. #639738Yeah that could be, glad it’s works now.
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.avia-image-container:hover .av-image-caption-overlay{opacity: 1;}
Cheers!
JosueHey!
Seems like a JS/CSS issue rather than a PHP one, try adding this code to the Quick CSS:
.js_active .av-minimum-height .container { opacity: 1 !important; }
Cheers!
JosueMay 28, 2016 at 10:59 am in reply to: I've read the post, and still cannot get images in my slider to show. #639728Hi!
Can you post a screenshot of your view?
Regards,
JosueHey!
Try adding this code to the Quick CSS:
#top .grid-sort-container .grid-parity-even .grid-content{ background: #d1d1d1; } #top .grid-sort-container .avia-arrow{ display: none; } #top .grid-sort-container .grid-entry-title { background: transparent; }
Cheers!
JosueYou are welcome and apologies for the first experience you had, we’re always trying to improve :)
Best regards,
JosueI guess the basic procedure would be like:
1. Build the single post view using ALB (content).
2. Build the archive post view with simple text and image (excerpt):<img class="alignright" src="IMAGE URL" width="225" height="243" />Mia TEXT [donation-can goal_id=ID show_title=false]
Read more is removed, tags and categories show on archive view now.
I can see some issues have arose in the list view due to placing ALB shortcodes in excerpt (fullwidth elements like grid row and submenu are not expected to be contained), check what i did in Mia’s post excerpt.
1. If you enable ALB you’ll have to add the shortcodes manually (as i did on mia’s post), that’s one of the downsides of ALB as it’s meant to convert any pre-defined templates into an empty canvas.
2. Can you post a link to one of the list view?
Looks good to me, the phone color is not changing because the
color: #000 !important;
it’s still set there in style.css.Remove
color:#000 !important;
from:#avia2-menu li:nth-child(4) a,#avia2-menu li:nth-child(5) a,#avia2-menu li:nth-child(6) a {background-color: transparent !important;color:#000 !important; padding: 0px !important;font-size:13px !important}
And:
#header .phone-info.with_nav > span { color: #000 !important; font-size: 13px !important; font-weight: normal !important; }
OK, i added some codes here that will allow you to have tags/categories for both cases:
– ALB enabled, use the following shortcodes in text blocks (example)
[the_post_tags] [the_post_categories]
– ALB disabled, it’s added automatically after Tags (example)
There’s also some additional custom CSS code in Quick CSS.
-
This reply was modified 9 years, 1 month ago by
Josue.
Remove
color:#000 !important;
from that snippet.Some code in your style.css is overwriting the submenu coloring:
.sub_menu > ul > li > a, .sub_menu > div > ul > li > a { color:#000 !important; font-size:13px !important; font-weight:normal !important; }
Default value should be
color: inherit;
.I’ll close this thread and add a link for reference in your other one, please stick to one thread.
Hi,
Can you post the link to your website please?
Regards,
JosueHey,
Set-up a redirection from the default archive view to your custom page, you can use the following plugin for that:
https://wordpress.org/plugins/simple-301-redirects/Best regards,
JosueAuthor shouldn’t be showing now. Regarding the single post view, an issue is that the Mia post is using Advanced Layout Builder but the older posts aren’t, before we proceed into adding tags/categories i’d need to know if you’re planning to use ALB on ALL posts or no.
May 28, 2016 at 1:29 am in reply to: Nach Aktualisierung der Datenbank + WP werden die Slider nicht mehr angezeigt #639576Hey,
Your site is unaccessible (need authorization).
Best regards,
JosueMay 28, 2016 at 1:28 am in reply to: Open Image Gallery picture's link in a new thumbnail or window #639574Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { $("a[href^='http:']").not("[href*='ironmanech.com']").attr('target','_blank'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');
That will make all external links to open in a new page.
Regards,
JosueHi,
Can you post the link to your website please?
Regards,
Josue -
This reply was modified 9 years, 1 month ago by
-
AuthorPosts