Forum Replies Created

Viewing 30 posts - 49,651 through 49,680 (of 66,194 total)
  • Author
    Posts
  • 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,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Custom menu based on portfolio category #410339

    Hi!

    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,
    Ismael

    in reply to: Add embed field to post #410337

    Hey!

    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,
    Ismael

    in reply to: "Read more" at Masonry Blog #410335

    Hey!

    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!
    Ismael

    in reply to: Customize Language Selecter of WPML a bit #410334

    Hi!

    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,
    Ismael

    in reply to: Menu not picking up styling #410332

    Hi!

    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!
    Ismael

    in reply to: Chrome bug #410329

    Hi!

    Try to increase the WordPress Memory Limit to at least 256M: http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/

    Cheers!
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Responsive issue – Need Help #410323

    Hi!

    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,
    Ismael

    in reply to: Featured Images – Dealing With Portrait Sizes #410322

    Hey!

    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!
    Ismael

    in reply to: Blog Grid Layout problem #410318

    Hey!

    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,
    Ismael

    in reply to: Prev / Next Buttons within pages (not posts!) #410317

    Hi 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!
    Ismael

    Hey!

    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!
    Ismael

    in reply to: Error in Google Testing Tool #410309

    Hi!

    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!
    Ismael

    in reply to: Direct URL to Portfolio Categories #410297

    Hi!

    Please try to flush the permalink settings on Settings > Permalinks panel. Click the “Save” button once.

    Cheers!
    Ismael

    in reply to: Problem Header Logo Link #410290

    Hey 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,
    Ismael

    in reply to: Sidebar widgets background colour #410285

    Hi!

    Add this to the custom css field:

    section#mc4wp_widget-2 > * {
      display: block;
      clear: both;
    }
    
    section#mc4wp_widget-2 {
      background: #f2f2f2;
      padding: 10px;
    }

    Regards,
    Ismael

    in reply to: Firefox unresponsive and alignment issues #410284

    Hey!

    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!
    Ismael

    in reply to: 4 Questions – breadcrumbs, related posts, blog title #410281

    Hi!

    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,
    Ismael

    in reply to: Side Navigation #410279

    Hey!

    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,
    Ismael

    in reply to: Failed to changed font #410278

    Hey!

    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,
    Ismael

    in reply to: Portfolio grid padding/margin top #410277

    Hi!

    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,
    Ismael

    in reply to: Responsive Menu stopped working #410276

    Hey!

    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,
    Ismael

    in reply to: Custom fonts in Chrome – make smoother (or disable)? #410273

    Hey!

    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,
    Ismael

    in reply to: top bar font size #410272

    Hey!

    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,
    Ismael

    in reply to: Theme Options Gone After Database Restore #410271

    Hey!

    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-32684

    The best thing to do is to hire a freelance developer who is familiar with the process.

    Best regards,
    Ismael

    in reply to: Advanced Layer Slider #410270

    Hi!

    Try to remove the arrow (>>) after the “Learn More” text. I think it breaks the slider.

    Regards,
    Ismael

    in reply to: Full screen Background Image #410269

    Hi!

    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

    in reply to: # is URL anywhere in page causing issue #410268

    Hi!

    I think that is the correct behaviour because the third party script is trying to vertically align the active menu on viewport. Please contact the plugin author for more info.

    Best regards,
    Ismael

Viewing 30 posts - 49,651 through 49,680 (of 66,194 total)