Forum Replies Created
-
AuthorPosts
-
You are welcome, glad we could help :)
Regards,
JosueNice use of video backgrounds Huyle!
Hey!
The change is actually applied, look:
http://factsandmore.nl/factsmore-goes-chinese/What you need to modify now is the code in the theme functions.php:
function modify_share_title(){ return "Share this"; } add_filter('avia_social_share_title', 'modify_share_title');Change “Share this” by the text you want to use.
Cheers!
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
May 26, 2014 at 11:43 pm in reply to: Icon for Extra Element in Header & Tablet Logo Center problem #270305Hey!
Try adding this code to the Quick CSS:
.phone-info .iconbox_icon { float: none !important; display: inline; margin-left: 10px; } #header_meta div.phone-info { height: 15px; } @media only screen and (max-width: 767px) { .logo img { margin: 0 auto !important; } .responsive .mobile_slide_out .logo{ float:none !important; } }Cheers!
JosueSorry i forgot something, add this too:
#av_section_3 .avia-content-slider { overflow: visible; }Regards,
JosueHey!
The login details you provided don’t work.
Regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueThe last change i suggested was meant to be made on the theme files, this specifically:
/includes/helper-social-media.php
If it doesn’t work please create me an administrator account, post it here as a private reply.
Regards,
JosueHey!
Try adding this code to the Quick CSS:
#top .avia-slideshow-arrows a.prev-slide { left: -80px; } #top .avia-slideshow-arrows a.next-slide { right: -80px; }Cheers!
JosueHi!
According to the mockup you posted, you’d need to split this image in blocks first:
http://www.espace-graphique.fr/newsite/wp-content/uploads/2014/05/Accueil.jpgRegards,
JosueHi hadas!
Try adding this to the functions.php (theme):
add_action('wp_enqueue_scripts', 'custom_rtl_include'); function custom_rtl_include() { $template_url = get_template_directory_uri(); if(is_page(22)){ wp_enqueue_style( 'avia-rtl', $template_url."/css/rtl.css", array(), '1', 'screen' ); } }Change 22 by the ID of Page.
Cheers!
JosueMay 26, 2014 at 11:09 pm in reply to: Product Categories not showing up in Screen Options for menus #270283Hey!
In your install, “Product Categories” are named “Authors”:

Cheers!
JosueHey!
Make sure you don’t have this option selected in the menu items:

Regards,
JosueHi Roman!
1. Add this to the Quick CSS:
time.date-container.minor-meta { display: none; } span.text-sep.text-sep-date { display: none; }2. You can either hide in the Layout Options (“Title Bar Settings”) or if you want to put a custom text there, you can do it by adding this to the theme functions.php:
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if ( $args['title'] == 'Blog - Latest News' ) { $args['title'] = get_the_title($id); $args['link'] = get_permalink($id); $args['heading'] = 'h1'; } return $args; }Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueHi,
Can you post the link to the page in question please? i’m not sure what buttons you referring to.
Regards,
JosueHi,
Can you create me an administrator account? i’d like to test something.
Regards,
JosueHi!
You have to set the image as a Featured Image here:
http://dev02.clarifit.com/wp-admin/post.php?post=87&action=edit&message=1The result:
http://dev02.clarifit.com/Regards,
JosueMay 26, 2014 at 10:47 pm in reply to: Create left submenu / How to create a small video background #270271Hi Yoolia!
1. That’s a custom script made by Kriesi, it’s not included in the Enfold theme.
2. Refer to this video on how to use the video background feature:
Best regards,
JosueOpen /includes/helper-social-media.php and look for line 214:
$this->html .= __("Share this entry",'avia_framework');Change it to:
$this->html .= apply_filters('avia_social_share_title', __("Share this entry",'avia_framework'), $this->args);Cheers!
JosueHi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueHi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueYou are welcome, glad we could help :)
Regards,
JosuePut this code in the theme functions.php (at the end):
function modify_share_title(){ return "Share this"; } add_filter('avia_social_share_title', 'modify_share_title');Best regards,
JosueHey!
Are you using the latest version of Enfold / WordPress?
Can you post a link to your Portfolio?
Cheers!
JosueHey Alim!
What Widget are you using?
Best regards,
JosueMay 26, 2014 at 8:18 pm in reply to: Background main content image loading in layer slider before it show up properly #270237Hi Nerohm!
The link you posted is displaying a 404 not found error.
Regards,
JosueHi Vada!
This is s beyond the scope of the support we can offer.
I recommend you to ask this question in a site like Stack Overflow.
Regards,
JosueHey Jelle!
Making third party plugins compatible with theme is beyond the support scope we can offer.
But just for your information, another user reported good result with Zopim and Enfold:
https://kriesi.at/support/topic/zopim/Maybe you need to configure something in the plugin options.
Best regards,
JosueHi Anne,
It’s happening because you are doing a inline-content lightbox via ID (which causes the smooth transition effect when clicked). Try adding this at the end of the theme functions.php file:
function add_custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery('.pricing-table a').unbind(); }); </script> <?php } add_action('wp_footer', 'add_custom_script');And this to the Quick CSS:
.pricing-table a .overlay-type-extern { display: none }Regards,
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
