Forum Replies Created

Viewing 30 posts - 53,071 through 53,100 (of 67,510 total)
  • Author
    Posts
  • in reply to: Masonry Gallery #365805

    Hey cocoagroup!

    Thank you for using Enfold.

    What do you mean by “mouse hover enabled”? Can you please provide an example? A screenshot will help.

    Regards,
    Ismael

    Hi!

    Thank you for using Enfold.

    Yes, that is the color section. You can set the background attachment to fixed or parallax.

    Regards,
    Ismael

    in reply to: "Latest news" thumbnails not resizing properly #365802

    Hey!

    Edit the post slider then set the Preview Image Size to manual. On Select custom preview image size setting, select Portfolio for example then install this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Go to Settings > Media, look for the portfolio size thumbnai. Adjust the width and height then set the cropping parameter to Yes. Update then save changes. Regenerate the thumbnails.

    Regards,
    Ismael

    in reply to: Logo does not fit #365799

    Hey!

    The current width of the logo is 180px. Please upload it again on Enfold > Theme Options > Logo uploader then choose the correct thumbnail size. Set the Header Size to custom pixel value on Enfold > Header panel. Adjust the height to the actual height of the logo image. This will automatically stretch the width of the image.

    Cheers!
    Ismael

    Hey!

    Please post the website url here. We would like to check it. You can try this:

    @media only screen and (min-width: 768px) {
    .header_color .header_bg {
    background: none;
    }
    }

    Regards,
    Ismael

    in reply to: WPML automatically in top header – change flag to dropdown #365795

    Hey!

    Please check the site now.

    Best regards,
    Ismael

    • This reply was modified 11 years, 3 months ago by Josue.

    Hi!

    Why did you add asterisk on the zip codes? Please check the cart now: http://www.yoyosushi.nl/?page_id=323

    Best regards,
    Ismael

    in reply to: The translation of the theme does not work on my site #365791

    Hey!

    I’m sorry but it turns out, you can’t translate the strings of the theme options using the codestyling localization plugin. Not really sure why it’s not working for the actual theme options panel. It works for the advance layout builder strings. You might need to edit the text directly on includes > admin > register-admin-options.php:

    array( 'slug' => 'avia', 		'parent'=>'avia', 'icon'=>"hammer_screwdriver.png" , 	'title' =>  __('Theme Options', 'avia_framework')),
    	array( 'slug' => 'layout', 		'parent'=>'avia', 'icon'=>"application_side_expand.png",'title' =>  __('General Layout', 'avia_framework')),
    	array( 'slug' => 'styling', 	'parent'=>'avia', 'icon'=>"palette.png", 				'title' =>  __('General Styling', 'avia_framework')),
    	array( 'slug' => 'customize', 	'parent'=>'avia', 'icon'=>"wand.png", 					'title' =>  __('Advanced Styling', 'avia_framework')),
    	array( 'slug' => 'header', 		'parent'=>'avia', 'icon'=>"layout_select.png", 			'title' =>  __('Header', 'avia_framework')),
    	array( 'slug' => 'sidebars', 	'parent'=>'avia', 'icon'=>"layout_select_sidebar.png", 	'title' =>  __('Sidebar Settings', 'avia_framework')),
    	array( 'slug' => 'footer', 		'parent'=>'avia', 'icon'=>"layout_select_footer.png", 	'title' =>  __('Footer', 'avia_framework')),
    	array( 'slug' => 'blog', 		'parent'=>'avia', 'icon'=>"blog.png", 					'title' =>  __('Blog Layout', 'avia_framework')),
    	array( 'slug' => 'social', 		'parent'=>'avia', 'icon'=>"user.png", 					'title' =>  __('Social Profiles', 'avia_framework')),
    );
    
    if(!current_theme_supports('avia_disable_import_export')){
    	$avia_pages[] = array( 'slug' => 'demo', 		'parent'=>'avia', 'icon'=>"doc_text_image.png", 'title' => __('Demo Import', 'avia_framework'));
    	$avia_pages[] = array( 'slug' => 'upload', 		'parent'=>'avia', 'icon'=>"import_export.png", 'title' => __('Import/Export', 'avia_framework'));
    }

    Best regards,
    Ismael

    in reply to: Disable Appearance > Install Plugins #365784

    Hey!

    Please refer to this link: http://codex.wordpress.org/Function_Reference/remove_menu_page

    Best regards,
    Ismael

    in reply to: Smaller Margins in widget area? #365780

    Hey!

    Where can we find the page with the facebook widget? Please post the url here.

    Best regards,
    Ismael

    in reply to: Custom category image #365776

    Hi!

    Thanks for the recap. We’ll close this thread now. :)

    Regards,
    Ismael

    in reply to: Problems with blog page layout #365774

    Hi!

    You need to set the Blog Style on Enfold > Blog Layout > Blog Style setting. Please take some time to review all of the resources in the Theme Documentation. A lot of basic stuff like theme installation, element configuration, options overview, css snippets and whole lot of handy stuff regarding the theme are probably available in there. You can watch video tutorials or get hold of a few hooks and filter functions that may help you modify the theme as you like. You can also search the forum for any related questions or issues.

    If you don’t find what you’re looking for, don’t hesitate to let us know and we will be happy to assist you. For any complicated questions or add-on, please visit our Feature Requests page. Thanks!

    Best regards,
    Ismael

    in reply to: Skands Support and "Read More" Links #365773

    Hey!

    1.) Looks like you figure this one out. I checked the website and there are read more links on the excerpt.

    2.) Instead of typing the html entity code manually, try to copy the symbol ø and paste it on the editor. Seems to be more consistent.

    Cheers!
    Ismael

    in reply to: Featuring or Highlighting a New Post #365770

    Hi!

    Please look for this code:

    $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
    

    Replace it with:

    $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
    					$publisheddate = get_the_time('Y-m-d');			
    					$published = strtotime($publisheddate);
    					$expiration = $published + (7 * 24 * 60 * 60);
    					$today = current_time('timestamp');
    				
    					if($expiration > $today) {
    						$output .= "<span class='new-post-meta'>NEW</span>";
    					}

    Cheers!
    Ismael

    in reply to: Portfolio Pagination Issue since update of Enfold #365769

    Hi!

    I tried to login to the website but I got this error:

    You are temporarily locked out

    Regards,
    Ismael

    in reply to: Featuring or Highlighting a New Post #365211

    Hi!

    Looks like you’re using the grid layout. You can edit config-templatebuilder > avia-shortcodes > postslider.php. Look for this code:

    $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
    

    For further modifications, please visit Envato Studio or Werkpress.

    Cheers!
    Ismael

    in reply to: Adding custom file as social icon #365210

    Hi!

    You can replace the background via css. If you want to change the twitter social icon for example, use this:

    #top #wrap_all .social_bookmarks_twitter a {
    background: url('IMAGE URI HERE');
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: 9999px;
    }

    Best regards,
    Ismael

    in reply to: Logo Transparency not working #365204

    Hi!

    Did you set it on the page’s Layout > Header visibility and transparency settings? Please post the login details here. We would like to check it.

    Regards,
    Ismael

    Hey alfonsoval!

    Thank you for using Enfold.

    Please post the website url here. If possible, please create a test page with the partner/logo and tables element.

    Cheers!
    Ismael

    in reply to: Remove Overlay and Transformation on linked Images #365200

    Hey labla!

    Thank you for using Enfold.

    Use this on Quick CSS or custom.css to remove the image overlay:

    span.image-overlay.overlay-type-extern {
    display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Disable Appearance > Install Plugins #365198

    Hey Kevin!

    Thank you for using Enfold.

    Maybe, this plugin will help: https://wordpress.org/plugins/admin-menu-editor/

    Best regards,
    Ismael

    in reply to: Images not loading #365197

    Hey cdubose574!

    Thank you for using Enfold.

    Please update the theme as well to Enfold 3.0.4. This should fix the issue.

    Regards,
    Ismael

    in reply to: Mega Menu width #365196

    Hey!

    This might not work for old browser such as IE9. Viewport relative css values supports these browsers: IE 10+, Firefox 19+, Chrome 34+, Safari 7+, Android 4.4+, iOS 6+. Have you tried using percentage values?

    Best regards,
    Ismael

    in reply to: Header extra elements customization #365192

    Hi!

    Thank you for using Enfold.

    1.) Change the html background with this:

    html { background: red; }
    

    2.) I’m not sure what you mean by this. Can you please provide a screenshot?

    3-4.) Please refer to @begrafiks posts.

    5.) Remove the border with this:

    #top .av_header_transparency #header_meta { background: transparent; box-shadow: none; border-bottom: none; }
    


    @begrafiks
    : Thanks for helping out! :)

    Best regards,
    Ismael

    in reply to: Broken Images in Media Library – Can't upload #365187
    in reply to: Advanced Layout Editor won't load :( #365186

    Hey shoptorontostyle!

    Thank you for using Enfold.

    Please post the website url here. We would like to check it. Make sure that you’re using Enfold 3.0.4 on WordPress 4.0.1.

    Best regards,
    Ismael

    in reply to: Grid Loop Question #365185

    Hey tylerjmorrison!

    Thank you for using Enfold.

    You can find the blog grid layout on config-templatebuilder > avia-shortcodes > postslider.php. Note that this template is also being used by the post slider element.

    Cheers!
    Ismael

    in reply to: Fatal error: Call to undefined function shortcode_exist #365184

    Hi!

    Please download Enfold 3.0.4 then update the theme. It should fix the issue.

    Best regards,
    Ismael

    in reply to: Accordian Slider Blank #365183

    Hey!

    There are errors coming from the Social Share plugin. Please deactivate all plugins then remove browser cache or test it on another browser.

    Regards,
    Ismael

    in reply to: Add a new social icon with fontello #365182

    Hey!

    You mean, you already added the code before? Can you please post the code on pastebin.com?

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['houzz']	 = array( 'font' =>'fontello', 'icon' => 'ue801');
    // Add new icon here
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Houzz'] = 'houzz';
    // Add new icon here
    return $icons;
    }

    I tested the code above on my installation and it works fine.

    Regards,
    Ismael

Viewing 30 posts - 53,071 through 53,100 (of 67,510 total)