Forum Replies Created

Viewing 30 posts - 51,301 through 51,330 (of 67,524 total)
  • Author
    Posts
  • in reply to: Currencies in Events Calendar Element shown incorrect #403292

    Hi!

    Alright. This seems to do the trick:

    $cost   = tribe_get_cost( $entry->ID, false);
    					$symbol = tribe_get_event_meta( $entry->ID, '_EventCurrencySymbol', true );
    					$rev 	= tribe_get_event_meta( $entry->ID, '_EventCurrencyPosition', true );
    					if($cost === 'Free') {
    						$price = __( "Free", 'tribe-events-calendar' );
    					} elseif($rev == 'prefix') {
    						$price = $symbol . " " . $cost;
    					} elseif($rev == 'suffix') {
    						$price = $cost . " " . $symbol;
    					} 

    NOTE: Enter a 0 (zero) for events that are free or leave blank to hide the field.

    Regards,
    Ismael

    in reply to: 'Read More' element within Masonry blog not working #403284

    Hey itchybrain!

    Thank you for using Enfold.

    Add this to the functions.php:

    add_filter('avf_masonry_loop_prepare','avia_change_default_link', 10, 2);
    function avia_change_default_link($loop, $entries)
    {
    	foreach($entries->posts as $key => $entry)
        {
            if($entry->post_type == "post")
            {
                $more 	 		 =  "<br /><span class='masonry-more-link-arrow'>".__('Read more','avia_framework')."</span>";
    			$loop['content'] =   avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '') . $more;  
            }
        }
    
        return $loop;
    }
    

    Adjust the style of the read more link using this selector, .masonry-more-link-arrow.

    Regards,
    Ismael

    Hi!

    You can use this hook:

    add_action('ava_after_main_container', 'ava_after_main_container_mod');
    function ava_after_main_container_mod() {
    echo "<div class'custom-title'>TITLE HERE</a>";	
    }

    Cheers!
    Ismael

    in reply to: Currencies in Events Calendar Element shown incorrect #403261

    Hi!

    Alright. Thank you for the info. Can you please provide a link a to the actual event page? What happens if you put “Free” in the cost field?

    Cheers!
    Ismael

    in reply to: Breadcrumbs not aligned anymore since 3.0.5 update on iPad #403259

    Hi Morticka!

    Thank you for using Enfold.

    I’m sorry but we can’t reproduce the issue. Breadcrumbs look aligned on different screen sizes.

    Cheers!
    Ismael

    Hi!

    You don’t have the latest version of the theme. Version 3.0.2 is not compatible with WP 4.1.1. Please download version 3.0.8.

    Regards,
    Ismael

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

    Hi!

    Did you use the WP MigrateDB or WP MigrateDB PRO plugin as suggested above?

    Regards,
    Ismael

    in reply to: Removing Margins from the main content area #403250

    Hey ftlamont!

    Thank you for using Enfold.

    Use the Grid Layout element. Please provide a screenshot.

    Regards,
    Ismael

    in reply to: Problem installing Coming Soon Demo #403243

    Hey!

    Thank you for sharing the fix. :)

    Best regards,
    Ismael

    in reply to: Easy slider does not resize images #403242

    Hey Larestours!

    Thank you for using Enfold.

    I checked the site but I don’t see any easy sliders. Please give us a link to the actual page. So.. you’re trying to add images with 1500x1500px and 300x300px? Is that correct or I didn’t understand you clearly? I don’t think they will look pretty in any kind of slider. Use images with the same size or proportion.

    Best regards,
    Ismael

    in reply to: Responsive columns are not stacking correctly #403236

    Hi!

    Looks like the css files are not being loaded properly. Did you add any modifications to the child theme folder?

    Regards,
    Ismael

    in reply to: New Grid Row with Hover Effect #403234

    Hi!

    Unfortunately, you can’t do an image swap using the image element. You need to create the image container manually, using a text block probably, then use css to attach the icon image as background. A good example here:

    http://stackoverflow.com/questions/15468037/basic-css-hover-image-swap
    http://stradegyadvertising.com/tutorial-how-to-image-hover-swap-css/

    If you’re using an actual font icon, we can change the background and color via css but since you’re using an actual icon image, the css swap is your best option.

    Cheers!
    Ismael

    in reply to: Blog style #403231

    Hey!

    If you want the archive page to have the grid style, use this on functions.php:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }

    Best regards,
    Ismael

    in reply to: Reduce the animation effect #403217

    Hi ColinWalton!

    Thank you for using Enfold.

    Add this to the Quick CSS field to disable gallery animation:

    .avia_transform .avia-gallery-thumb img {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    transform: scale(1) !important;
    }

    Best regards,
    Ismael

    in reply to: Getting the Sidebar to show the Parent/Grandparent #403214

    Hey!

    Maybe the apostrophe signs are being converted automatically when you copy the code. Get the code here: http://pastebin.com/YGPZrauc

    Best regards,
    Ismael

    in reply to: Adding extra logo to the right of the menu bar #403213

    Hi!

    Are you open to the idea of decreasing the width of the logo on smaller screens sizes?

    @media only screen and (max-width: 1700px) {
    .custom_content img {
    width: 100px;
    height: auto;
    position: relative;
    top: 15px;
    }}

    Regards,
    Ismael

    in reply to: Enfold Update / Woocommerce #403204

    Hey!

    Sorry for the delay. You need to follow the endpoints that are set in WooCommerce > Settings > Account > My Account Endpoints panel. There are only 5 endpoints and you change them manually. Append the endpoints to the My Account Page’s url. Example:

    Edit Account : http://franzelina.com/?page_id=7316&edit-account
    View Order   : http://franzelina.com/?page_id=7316&view-order

    The url of the Login and Registration page is the same as the account page. Tick the “Enable registration on the “My Account” page” under Registration Options.

    Best regards,
    Ismael

    in reply to: Separator Icons not centered on mobil device #403195

    Hi Jasmer!

    Thank you for using Enfold.

    Add this to the Quick CSS field:

    @media only screen and (max-width: 767px) {
    span.hr-inner.inner-border-av-border-none {
    display: none;
    }}

    Cheers!
    Ismael

    in reply to: social media button error #403194

    Hi potentialindia!

    Thank you for using Enfold.

    Did you create an addthis account? Add the share button codes manually. Use this on the functions.php file:

    add_filter('avf_template_builder_content', 'avf_template_builder_content_mod');
    function avf_template_builder_content_mod($content = "") {
    
    if(is_singular('portfolio')) {
    $share = '<!-- AddThis Button BEGIN -->
    <div class="addthis_toolbox addthis_default_style ">
    <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
    <a class="addthis_button_tweet"></a>
    <a class="addthis_button_pinterest_pinit"></a>
    <a class="addthis_counter addthis_pill_style"></a>
    </div>
    <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
    <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>
    <!-- AddThis Button END -->';
    $content = $content . $share;
    }
    return $content;
    }
    

    Get your own button codes inside the addthis account: https://www.addthis.com/get/sharing

    Regards,
    Ismael

    in reply to: flex columns overlap before transitioning to mobile view #403192

    Hi!

    Adjust the width of the elements inside the columns to 100%:

    @media only screen and (max-width: 1100px) {
    #homepage .welcome, #homepage .service, #homepage .testimonials {
    width: 100%;
    }}

    Best regards,
    Ismael

    in reply to: Full background image – possible like this? #403189

    Hi!

    Enable the custom css class for the builder elements. Refer to this link: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Apply a unique css selector to a text block or grid row element then apply a transparent background to it. Or apply the transparent background directly to the color section’s container.

    Cheers!
    Ismael

    in reply to: About RSS feed #403187

    Hey Enffie!

    Thank you for using Enfold.

    You don’t have the latest version of the theme. Please download version 3.0.8 from your themeforest account. The fix will be included on the next update: https://kriesi.at/support/topic/feed-feed-on-sites-does-not-work/#post-398428

    Regards,
    Ismael

    in reply to: Full width template for Enfold on Github #403185

    Hi!

    You can duplicate the template-builder.php, name it template-custom.php for example. Edit the page, add a template name at the very top:

    /*
    	Template Name: Custom Builder
    	*/

    You can add all custom fields inside this template.

    Cheers!
    Ismael

    in reply to: Currencies in Events Calendar Element shown incorrect #403183

    Hi!

    I tested this on my installation and leaving the cost blank renders the “Free” text. Are you sure you added the latest code?

    Best regards,
    Ismael

    in reply to: Currencies in Events Calendar Element shown incorrect #402586

    Hi!

    This should work now:

    $cost   = tribe_get_cost( $entry->ID, false);
    					$symbol = tribe_get_event_meta( $entry->ID, '_EventCurrencySymbol', true );
    					$rev 	= tribe_get_event_meta( $entry->ID, '_EventCurrencyPosition', true );
    					if($cost === 'Free') {
    						$price = __( "Free", 'tribe-events-calendar' );
    					} elseif($rev == 'prefix') {
    						$price = $symbol . " " . $cost;
    					} elseif($rev == 'suffix') {
    						$price = $cost . " " . $symbol;
    					} 

    Cheers!
    Ismael

    in reply to: Currencies in Events Calendar Element shown incorrect #402581

    Hi!

    We updated the code above. Please use that instead.

    Best regards,
    Ismael

    in reply to: Show number of comments in masonry #402569

    Hi Pauloflores!

    Thank you for using Enfold.

    It is possible but you need to edit the core theme files. Edit config-templatebuilder > avia-shortcodes > masonry_entries.php. Remove everything and replace it with this: http://pastebin.com/GyAQdEcA

    We added this line:

    $commentCount = get_comments_number($entry->ID);
    				$this->loop[$key]['comment'] 		= "<div class='av-masonry-comment meta-color'>Comments: {$commentCount}</div>";	

    Cheers!
    Ismael

    Hi!

    1.) You can add html codes inside the Phone Number or small info text field. You can find it on Enfold > Header > Extra Elements panel.

    2.) Add this to the functions.php:

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }

    Go to Enfold > General Styling > Quick CSS field. Add this:

    @media only screen and (max-width: 767px) {
    #top #searchform>div {
    display: block !important;
    opacity: 1 !important;	
    }
    }

    This will render the search box inside the mobile navigation.

    Cheers!
    Ismael

    in reply to: Problem beim Theme-Update #402547

    Hi djusoft!

    Thank you for using Enfold.

    Try logging out of the dashboard then login back again or use another browser. If it’s not working, update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Ismael

Viewing 30 posts - 51,301 through 51,330 (of 67,524 total)