Forum Replies Created
-
AuthorPosts
-
March 12, 2015 at 8:41 am in reply to: Enfold featured image of Page not showing when publicized to Facebook #410347
Hi!
It takes time (an hour maybe) before facebook updates or scrape the information on a given url. Please try it tomorrow. If you want to check the facebook information for a given url, go here: https://developers.facebook.com/tools/debug/og/object/
Regards,
IsmaelMarch 12, 2015 at 8:27 am in reply to: how to change the height of the "Fullwith Easy Slider" in Enfold? #410343Hi!
You will be able to create a custom Slideshow Image Size by adding the code inside the child theme’s functions.php:
// add new size add_image_size( 'awesome-size', 1500, 630, true ); // make the new size available in the media library (and image element etc.) add_filter( 'image_size_names_choose', 'my_custom_sizes' ); function my_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'awesome-size' => __( 'Awesome Size' ), ) ); }
Upload the images again then select the “Awesome Size” in the easy slider’s Slideshow Image Size setting.
Regards,
IsmaelHi!
If I may interject, you should try this plugin: https://wordpress.org/plugins/menu-items-visibility-control/
Add the menu items inside the Enfold Main Menu then set the Visibility:
is_tax( 'portfolio_entries', 'economics' );
This will only show the menu item on portfolio category page “economics”. If you don’t want to show the default menu items inside the category page, use this:
!is_tax( 'portfolio_entries', 'economics' );
Regards,
IsmaelHey!
Try to edit includes > loop-index.php, look for this code:
echo $content;
Below, add this:
$mvp_video = get_post_meta( $the_id, 'mvp_video_embed', true ); if($mvp_video) { echo $mvp_video; }
Best regards,
IsmaelHey!
Looks like the filter isn’t working. Please edit config-templatebuilder > aviashortcodes > masonry_entries.php. Look for this code:
if(empty($this->loop[$key]['content'])) { $this->loop[$key]['content'] = avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, ''); }
Replace it with:
if(empty($this->loop[$key]['content'])) { $this->loop[$key]['content'] = avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '') . "<br /><span class='masonry-more-link-arrow'>".__('Read more','avia_framework')."</span>"; }
Cheers!
IsmaelHi!
Editing the core theme files means that you will lose all modifications when you update the theme. I think it’s best if you add the css modifications inside the Quick CSS field. All you need to do is to get the proper selector. If you want to add margins or padding between the language selector, use this:
.avia_wpml_language_switch li .language_flag { display: block; margin-right: 5px; }
A screenshot will help.
Best regards,
IsmaelHi!
Did you install a different theme before Enfold? Try to create a dummy menu then set it as Enfold Main Menu, let us know what happens.
Cheers!
IsmaelHi!
Try to increase the WordPress Memory Limit to at least 256M: http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/
Cheers!
IsmaelMarch 12, 2015 at 7:18 am in reply to: Dynamic Content is displayed in lower case in Layer Slider #410328Hey!
Thank you for using Enfold.
It is suppose to show that way because it is pulling the actual author slug or username which is “mad-rhino”. I think it’s best if you write the author name manually. You can fix the lowercase issue by adding a custom css:
text-transform: capitalize;
The dash symbol is not going to be remove though.
Regards,
IsmaelHi!
The layer slider applies the width of the background image dynamically to keep it inside the slider container. Since you’re not using any animations or effects on the slider, try to replace the layer slider with the fullwidth easy slider. Or add the image as a layer then set the width and height to 100%.
Best regards,
IsmaelHey!
I don’t think you can deal with this issue without compromising parts of the images specially when you have images that tall. Please deactivate the Simple Image Sizes plugin then edit functions.php, look for this code:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
Replace it with:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423, 'crop' => array('center', 'top')); // images for fullsize pages and fullsize slider
Upload the image again. This time, the crop positioning of the image is center top which prevents the top and center part from being cut off.
Cheers!
IsmaelHey!
The maximum size of the small preview container is 180x180px. You can change that with this:
.single-post .single-small.with-slider .small-preview { width: 180px; height: 180px; }
Adjust the width and height then install this plugin: https://wordpress.org/plugins/simple-image-sizes/
Go to Settings > Media panel, look for the square thumbnail size. Set the Cropping parameter to “No”. You can also adjust the width and height if you want. Update then save changes. Regenerate the thumbnails after.
Best regards,
IsmaelHi Klaus!
Thank you for using Enfold.
You will need a plugin or a custom script for that: http://codex.wordpress.org/Next_and_Previous_Links#The_Next_and_Previous_Pages
Cheers!
IsmaelMarch 12, 2015 at 6:34 am in reply to: Need Help: Enfold with Modern Tribe The Events Calendar: WooCommerce Tickets #410315Hey!
Edit the config-events-calendar > views > single-event.php, look for this code:
<div class='av-single-event-meta-bar'> <div class='av-single-event-meta-bar-inner'> <!-- Event meta --> <?php do_action( 'tribe_events_single_event_before_the_meta' ) ?> <?php /** * The tribe_events_single_event_meta() function has been deprecated and has been * left in place only to help customers with existing meta factory customizations * to transition: if you are one of those users, please review the new meta templates * and make the switch! */ if ( ! apply_filters( 'tribe_events_single_event_meta_legacy_mode', false ) ) tribe_get_template_part( 'modules/meta' ); else echo tribe_events_single_event_meta() ?> <?php do_action( 'tribe_events_single_event_after_the_meta' ) ?> </div> </div>
Move it below line 51:
<?php if( get_post_type() == TribeEvents::POSTTYPE && tribe_get_option( 'showComments', false ) ) comments_template() ?>
Add this to the Quick CSS field:
.av-single-event-content { width: 100%; margin-left: 0; }
Cheers!
IsmaelHi!
According to the rich snippets, those properties should be enclose inside a nested Offer container. Something like this:
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <meta itemprop="price" content="19.90"> <meta itemprop="priceCurrency" content="EUR"> <link itemprop="availability" href="http://schema.org/InStock"> </div>
This is not the case on your installation. Did you add any product modifications? It is working fine on our installation.
<div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <p class="price"><span class="amount">£10.50</span>–<span class="amount">£50.50</span></p> <meta itemprop="price" content="10.50"> <meta itemprop="priceCurrency" content="GBP"> <link itemprop="availability" href="http://schema.org/InStock"> </div>
Cheers!
IsmaelHi!
Please try to flush the permalink settings on Settings > Permalinks panel. Click the “Save” button once.
Cheers!
IsmaelHey soltner!
Thank you for using Enfold.
I checked the site but I don’t see any errors. Maybe, I don’t understand the inquiry clearly. Can you please translate it to english? Or a screenshot will help. Cool videos by the way. :)
Best regards,
IsmaelHi!
Add this to the custom css field:
section#mc4wp_widget-2 > * { display: block; clear: both; } section#mc4wp_widget-2 { background: #f2f2f2; padding: 10px; }
Regards,
IsmaelHey!
I think it’s the blank template that’s causing the issue. Instead of using it, use the default template then hide the footer, header, socket, sidebar inside the Layout settings. We fixed the page for you: http://thesixthsensesolution.com/courses/accelerated-healing-course-details/
Cheers!
IsmaelHi!
2.) You can copy the whole avia_title function inside the child theme’s functions.php.
3.) Did you add any breadcrumb modifications? Please post the login detail here. We would like to check it.
Regards,
IsmaelHey!
I’m not sure if I understand. If you want a more complex filter other than the one we have for the post navigation, you might need to hire a freelance developer. For further modifications, please visit Envato Studio or Werkpress.
Best regards,
IsmaelHey!
There are two font settings inside the Fonts panel, one for the Heading Fonts and the other for the body text. Did you set both of these to open sans? Please post the login details here. Set it as a private reply.
Best regards,
IsmaelHi!
First, edit the color section where the portfolio grid is located then add a unique id attribute inside the Section ID field. Use “custom-section” for example. Add this to the Quick CSS field:
#custom-section .column-top-margin { margin-top: 10px; }
Regards,
IsmaelHey!
What happens when you remove the header and footer files inside the child theme folder? The mobile-advanced container is not being generated on top of the #header container, replaced by the zopim chat plugin. Maybe a third party script is preventing it. Try to disable the header and footer files in the child theme folder then check it again. I’ll ask the rest of the support team to take a look.
Regards,
IsmaelHey!
That part is actually enclosed in a strong tag:
<strong><span style="color: #00afef;">Details make the difference.</span></strong>
Try to add this to the Quick CSS field and you’ll see the difference.
strong, b { font-weight: normal; }
You can try to specify a different font for chrome browser with this:
.avia-chrome h3 { font-family: 'Helvetica', 'Arial', sans-serif !important; }
Regards,
IsmaelHey!
We haven’t tried this plugin personally: http://www.designsandcode.com/wordpress-plugins/search-filter-pro/
If you don’t want to buy any plugin, you can try the portfolio grid element which has a basic category filter.
Best regards,
IsmaelHey!
What do you mean by moving it back to the old server? The old server should have the correct database format. Can you please provide a link to a development site?
http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684The best thing to do is to hire a freelance developer who is familiar with the process.
Best regards,
IsmaelHi!
Try to remove the arrow (>>) after the “Learn More” text. I think it breaks the slider.
Regards,
IsmaelHi!
Set the Background Repeat to “Stretch to Fit”. What is the purpose of the br tags? If you’re trying to create gaps or white space, use the Separator / Whitespace element.
Cheers!
Ismael -
AuthorPosts