Forum Replies Created
-
AuthorPosts
-
You are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.responsive .single .template-blog .blog-meta { display: block; float: none; }
Cheers!
JosueAugust 13, 2016 at 4:27 am in reply to: Special formatting in "enfold main menu" button style bordered #672158Hey!
Try adding this code to the Quick CSS:
.av-menu-button + .av-menu-button{ margin-left: 0; }
Cheers!
JosueAugust 13, 2016 at 3:15 am in reply to: Increase width and responsiveness of custom header widgets? #672152Hey Daniel,
Your code is a bit confusing but i’d suggest setting a fixed width to the widgets and using
right
instead ofleft
for the positioning.Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHey,
You may have this option enabled in Theme Options – http://screencast.com/t/px2LQBGI
Best regards,
JosueHi,
Try removing the image sizes with a plugin like:
https://wordpress.org/plugins/simple-image-sizes/Best regards,
JosueHi,
Set up a custom class for each icon box and use this CSS code:
.custom-class-1 a:hover[data-av_icon]:before { content: "\E87d"; } .custom-class-2 a:hover[data-av_icon]:before { content: "\E87d"; } .custom-class-3 a:hover[data-av_icon]:before { content: "\E87d"; } .custom-class-4 a:hover[data-av_icon]:before { content: "\E87d"; }
And change the codes accordingly, you can get the icon codes by hovering an icon in the editor.
Best regards,
JosueChange this part:
the_date('', '<span>', '</span>', FALSE);
To:
get_the_date('', $id);
Hello!
It is possible but it would require a heavy modification to the theme, unfortunately that’s beyond our support scope. You can request a customisation quote from a third-party provider here.
Regards,
JosueAugust 13, 2016 at 12:43 am in reply to: Content blocks below each other in two third column #672132Hey,
Not sure how we can help you with this, the link you posted looks exactly as the image, can you post a screenshot of the backend perhaps?
Best regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueTry republishing it, the post from the Aug 8th is using an old scrape data.
Best regards,
JosueHi,
The link you posted is returning a 404 error.
Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHey!
The demo’s parallax works fine on my end, can you post a link to your site so i can take a look?
Regards,
JosueHi,
No option but possible with CSS:
.avia-fullscreen-slider .avia-slideshow>ul>li { background-attachment: fixed; } .avia-fullscreen-slider .avia-slideshow-inner { transform: none !important; }
That will work with FullScreen Sliders.
Best regards,
JosueThen simply leave that part empty:
}else{ }
Best regards,
JosueOk, nos avisas como te va.
ps. no veo tu otro post, si puedes pon un enlace aqui.
Saludos,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_loop_index_blog_meta', function() { if(is_single()){ global $post; $output = get_the_post_thumbnail($post->ID, 'large'); return $output; } });
Cheers!
JosueHey kilimats,
Does it work if you remove this conditional?
if ( $args['title'] == 'Blog - Latest News' ){ }
Best regards,
JosueHey Sam,
Here’s what i get when trying to share the post on Facebook:
http://screencast.com/t/oL1lQwnAKBest regards,
JosueAugust 12, 2016 at 4:02 pm in reply to: Conflict Enfold – WooCommerce Measurement Price Calculator #671872Hey,
Refer to this topic:
https://kriesi.at/support/topic/conflict-between-woocommerce-measurement-price-calculator-and-enfold/Best regards,
JosueHi,
Instead of those snippets i’d suggest using something like this:
add_filter('avf_title_args', 'fix_single_post_title_2', 10, 2); function fix_single_post_title_2($args,$id) { if ( is_singular('post') || is_page(12) ) { // 12 being Page ID of the blog index $args['title'] = 'Insights'; } elseif ( is_singular('counselors') ) { $args['title'] = 'Counselors'; } elseif ( is_singular('another_ctp') ) { $args['title'] = 'Another CPT'; } else { $args['title'] = 'Default Title'; } return $args; }
Best regards,
JosueHey Michael,
There’s a Fixed option background on Color Sections that will replicate that effect.
Best regards,
JosueAugust 12, 2016 at 3:36 pm in reply to: Increase featured image resolution on mobile devices #671858Hey kilimats,
Try installing this plugin:
https://wordpress.org/plugins/disable-responsive-images/Best regards,
JosueHey,
The gallery element will try to fill all the available space of its container, try putting it inside a 1/3 or 1/2 column.
Best regards,
JosueHi,
What title should be there? the login access you provided aren’t working.
Best regards,
JosueYou don’t need to edit tag.php or archive.php for that, there’s a filter that lets you hook into the excerpt and modify it:
add_filter('avf_post_slider_entry_excerpt', function( $excerpt, $prepare_excerpt, $permalink, $entry ) { return "your code here"; }, 10, 4);
Also you have $entry available so you can get the ID of the Post ($entry->ID) and show the proper post_meta.
Best regards,
Josue -
AuthorPosts