Forum Replies Created
-
AuthorPosts
-
Hey!
Try adding this code to the Quick CSS:
#top #header .av-main-nav > li.av-menu-button-bordered > a .avia-menu-text, #top #header .av-main-nav > li.av-menu-button-bordered > a .avia-menu-subtext{ color: #7d7d7d !important; }
Cheers!
JosueHey,
Can you please enable transparency in the Page in question?
Best regards,
JosueHi,
Try using this code as base:
function custom_shortcode_func() { ob_start(); ?> PUT YOUR CODE HERE <?php $output = ob_get_clean(); return $output; } add_shortcode('my_shortcode', 'custom_shortcode_func');
Best regards,
JosueHi,
Using
Mark new posts
would probably be the more convenient option, perhaps we can mod the widget function to make it work together, can you post a link to your site?Best regards,
JosueJuly 9, 2016 at 1:27 am in reply to: Woocommerce Lightbox Product image not working for variable products #658630Hi,
The first link is returning a 404 error page.
Best regards,
JosueHey,
The issue here is that Full Width elements like Color Sections are not compatible with Sidebars (Sidebar will appear after it), a workaround would be to disable Sidebar and use a Widget Sections instead.
Best regards,
JosueHey,
Can you please indicate which slider has the problem? have you tried building that with a Color Section or a FullScreen Slider?
Best regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueHi,
You’ll have to use Ajax because ALB elements pop-up are based on it, there’s a JS Object (
avia_globals
) that gets created when a Post has ALB enabled, there you have access topost_id
(avia_globals.post_id
).Best regards,
JosueI’ll let Kriesi know.
Best regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
function change_blog_archive_style() { global $avia_config; if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; } } add_action('get_header', 'change_blog_archive_style');
Cheers!
JosueJuly 7, 2016 at 7:02 pm in reply to: Oops! Something went wrong. This page didn't load Google Maps correctly? #658194Hi,
Can you post the link to your website please?
Regards,
JosueHi,
Open /config-wpml/config.php and look for:
$items .= " <li class='av-language-switch-item language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>"; $items .= " <span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>"; $items .= "</a></li> ";
Replace it by this:
$n_items = " <li class='av-language-switch-item language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>"; $n_items .= " <span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>"; $n_items .= "</a></li> "; $items = $n_items.$items;
Regards,
JosueHi,
On which iPad and position are you noticing the issue?
Best regards,
JosueHi,
Seems you have disabled the title and breadcrumbs on your site.
Best regards,
JosueHi,
there’s a plugin that shows you all the meta fields associated with the current Post being edited:
https://wordpress.org/plugins/post-meta-inspector/Best regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
function custom_admin_css() { ?> <style> #poststuff h2, #poststuff h3{ font-weight: bold; padding: 0; } #poststuff h2 { font-size: 18px; } #poststuff h3 { font-size: 14px; } </style> <?php } add_action( 'admin_head', 'custom_admin_css' ); ?>
Cheers!
JosueJuly 7, 2016 at 6:29 pm in reply to: Navigating from one post to the next (posts are out of sequence) #658176Hey!
Try adding this code to the Quick CSS:
.avia-post-nav{ display: none !important; }
Cheers!
JosueJuly 7, 2016 at 6:25 pm in reply to: How to remove the images from "latest news" blog posts only on homepage #658173Hey!
Try adding this code to the Quick CSS:
span.news-thumb.no-news-thumb { display: none; }
Cheers!
Josue1. To get the image to show there it must be set as a featured image, you can do that manually or with a plugin like this:
https://wordpress.org/plugins/set-all-first-images-as-featured/2. Try this
.archive .post { margin-bottom: 100px; }
Hey!
Try adding this code to the Quick CSS:
.archive .hr-invisible { display: none; }
And this to child theme functions.php:
add_filter('avf_which_archive_output', function($output) { $output = str_replace('Archive for category: ', '', $output); return $output; });
Cheers!
JosueHey,
I’m afraid the masonry sorting script doesn’t have the capability to re-order posts by date/alphabetically at the moment. Hello!
You can request a customisation quote from a third-party provider here.
Best regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply, also post a link to the Groups page you want to edit.
Regards,
JosueHey,
Having that amount of Pages i think that’s expected, not sure if it can be optimized more but i’ll pass your request to Kriesi.
Best regards,
JosueHey,
Check your site.
Best regards,
JosueHey Antonio,
Try with this code:
#accomodation .av-special-heading.blockquote > * { text-shadow: 1px 1px 1px black; }
Best regards,
JosueHey sgkeil,
You could try limiting the width of the rotator:
#top span.av-rotator-text { max-width: 500px; display: block; margin: 0 auto; }
Best regards,
JosueHey,
That’s a Widget you can drag to the Shop Overview Widget Area – http://screencast.com/t/pcPSTPUR
Best regards,
Josue -
AuthorPosts