Forum Replies Created
-
AuthorPosts
-
Hi,
Can you create an administrator account and post it here as a private reply?
Also, please indicate the Page where the Promo Box resides.
Regards,
JosueHi!
Which browser? can you post a screenshot?
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.menu-item-mega-parent { top: 1px; }
Cheers!
JosueHi!
It wasn’t WooCommerce but “YITH WooCommerce Ajax Navigation” the one who caused the conflict:
http://www.islandtyres.com.au/777/Unfortunately i don’t think we could support compatibility fixes for non officially supported third-party plugins.
Regards,
JosueYou are welcome Giles, glad we could help :)
Regards,
JosueHi,
The page you linked is displaying a 404 error.
Cheers!
JosueFebruary 9, 2014 at 6:14 am in reply to: Change Blog date to "last updated" instead of "Date published" #221299Hey!
1. It won’t, if you use a Child theme however you can create a includes/loop-index.php (a copy of the original) in your Child theme directory and make the modification there.
2. Replace the line for this:
echo "<time class='date-container minor-meta updated' $markup> Last edited on ".get_the_modified_time(get_option('date_format'), $the_id)."</time>";
Cheers!
JosueHey Simon!
The links are actually white and on hover are gray:
Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueHi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueHi!
I guess you are referring to the item on the right, try the following:
Open js/avia.js and look for line 476
if(current.outerHeight() > 100)
Replace it by this:
if(current.outerHeight() > 50)
Regards,
JosueHey!
DId you try increasing the PHP memory limit?
Best regards,
JosueFebruary 8, 2014 at 6:46 am in reply to: Downloading original size images using the gallery? #221149Hi,
Open /config-templatebuilder/avia-shortcodes/gallery.php and look for line 160:
'lightbox_size' => 'large',
Replace it by this:
'lightbox_size' =full',
Regards,
JosueHi!
That page is displaying a 404 error.
Regards,
JosueFebruary 8, 2014 at 6:44 am in reply to: AJAX or JQUERY not working? Image gallery, ajax search and accordion broken #221147Hello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHi,
Can you post the link to your website please?
What version of WooCommerce have installed?
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.image-overlay-inside:before { height: 50px !important; width: 50px !important; line-height: 50px !important; margin: -25px 0 0 -25px !important; }
Cheers!
JosueFebruary 8, 2014 at 4:23 am in reply to: Change Blog date to "last updated" instead of "Date published" #221102Hi,
Open /includes/loop-index.php and look for line 120:
echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
Replace it by this:
echo "<time class='date-container minor-meta updated' $markup>".get_the_modified_time(get_option('date_format'), $the_id)."</time>";
Regards,
JosueHey!
Try with this code:
.avia-builder-el-25 .iconbox{ opacity:0.4; width: 90% !important; margin: 0 auto; }
To center an element you use margin: 0 auto, the width should not be set in px, but in percentage in order to keep responsiveness.
Best regards,
JosueHi!
Do you have access to your PHP Log?
Best regards,
JosueFebruary 7, 2014 at 6:58 am in reply to: Turn off a color section (parallax) for mobile/tablet only #220785February 7, 2014 at 6:54 am in reply to: Change Blog date to "last updated" instead of "Date published" #220783Hi,
Can you post the link to your blog please (where you’d like to make this change)?
Regards,
JosueHi Richard!
What code have you used to move the menu down?
Regards,
JosueFebruary 7, 2014 at 6:50 am in reply to: Change Opacity for "Add to Cart" and "Show Details" Text on Product Grid #220779Hey!
Try adding this code to the Quick CSS:
.avia_cart_buttons { opacity: 0.5 !important; }
Cheers!
JosueFebruary 7, 2014 at 6:49 am in reply to: Where is the avia_set_title_tag(); function located? #220778Hi!
I tested locally and it worked (having only one space around the pipe), can you post a link to your website?
Regards,
JosueHey Mark!
Try setting this option on Enfold > Sidebar:
Regards,
JosueHey!
When editing the single portfolio, set the images in this section:
Best regards,
JosueHi!
Add this to your child functions.php too:
function avia_default_title_filter($current_post) { if(!empty($current_post['title'])) { $heading = is_singular() ? "h1" : "h2"; $output = ""; $output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">"; if(is_singular()){ $output .= $current_post['title']; $output .= " <span class='post-format-icon minor-meta'></span>"; }else{ $output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title']; $output .= " <span class='post-format-icon minor-meta'></span>"; $output .= " </a>"; } $output .= "</{$heading}>"; $current_post['title'] = $output; } return $current_post; }
Cheers!
JosueHi,
Open /includes/comments.php and look for line 172:
comment_form();
Replace it by this:
comment_form(array('label_submit'=>'Send'));
Change “Send” by the value of your preference.
Regards,
Josue -
AuthorPosts