Forum Replies Created

Viewing 30 posts - 63,811 through 63,840 (of 66,930 total)
  • Author
    Posts
  • in reply to: How do I change the sidebars of each of my pages? #165036

    Hello uattah!

    You can go to Appearance > Widgets. If you want a new sidebar for the Shop page, you can add widgets on the Shop Overview Page widget area.

    Cheers!
    Ismael

    in reply to: Enfold 2.2 breaks site logo image #165035

    Hey!

    The logo stays 257x88px on any screen sizes. The container decreases on smaller screen sizes that’s why the menu is closer from the logo. You can add this on your custom.css or Quick CSS to decrease the logo size on smaller screens.

    @media only screen and (min-width: 1005px) and (max-width: 1155px) {
    .logo, .logo a {
    max-width: 200px;
    margin-top: 5px;
    }
    }

    Regards,
    Ismael

    in reply to: Adding a custom font #165031

    Hello!

    Please add this on your custom.css or Quick CSS:

    body, body p {
    font-family: "Alef", “Helvetica Neue”, Helvetica, Arial, sans-serif;
    }

    Best regards,
    Ismael

    Hey,

    Please send the login details to ///.

    Include the word “Kriesi” on the subject. Add the link of this thread on your email.

    Regards,
    Ismael

    in reply to: Remove featured images on pages #165028

    Hey!

    Edit includes > loop-page.php, find this code:

    $thumb = get_the_post_thumbnail(get_the_ID(), $avia_config['size']);
    
    				if($thumb) echo "<div class='page-thumb'>{$thumb}</div>";

    Remove it.,

    Best regards,
    Ismael

    in reply to: Russian language #165021

    Hi mcheev!

    You can download RUS po-mo files here. Place it on wp-content/themes/enfold/lang folder. Edit wp-config.php, find this code:

    define('WPLANG', '');

    Replace it with:

    define('WPLANG', 'ru_RU');

    Cheers!
    Ismael

    in reply to: Need help with tables inside the theme. #165019

    Hi!

    Please send the login details to ///.

    Include the word “Kriesi” on the subject. Add the link of this thread on your email.

    Best regards,
    Ismael

    in reply to: Display tags in portfolio #165018

    Hey!

    You need to manually add the recent or related portfolio entries using the Portfolio Grid element if you switch to Advance Layout Editor for portfolio items.

    Best regards,
    Ismael

    in reply to: Remove featured images on pages #165016

    Hey scisterna!

    You can add this on your custom.css or Quick CSS to hide the featured image on pages:

    .page .page-thumb {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Remove Bullets from Widget Menu #165015

    Hey!

    Can you give us a link to the website? Are you using a left or right sidebar?

    You can modify the css code like this:

    .widgettitle { 
    text-align: right; 
    }
    
    #footer .widgettitle { 
    text-align: left; 
    }

    Best regards,
    Ismael

    in reply to: Easy Slider with LightBox #165013

    Hi artistic24459!

    Edit config-templatebuilder > avia-shortcodes > slideshow.php, find this code:

    if($this->config['bg_slider'] != "true")
    					{
    						$html .= "<img src='".$img[0]."' title='".$linktitle."' alt='".$linkalt."' />";
    					}

    Replace it with:

    if($this->config['bg_slider'] != "true")
    					{
    						$html .= "<a rel='lightbox' href='".$img[0]."'><img src='".$img[0]."' title='".$linktitle."' alt='".$linkalt."' /></a>";
    					}

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Thumbnails on search results page #165009

    Hey rbellei!

    Thank you for using Enfold.

    You need to edit the includes > loop-search.php and look for this code:

    
    $post_format 	= get_post_format() ? get_post_format() : 'standard';
    

    Below that, add this line:

    
    $thumb = get_the_post_thumbnail(get_the_ID(), $avia_config['size']);
    

    Again, look for this line of code:

    
    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
    				//echo the post title
    

    .. then add this code below:

    
    echo "<div class='search-thumb'>".$thumb."</div>";
    

    After that, insert this css code in the General Styling > Quick CSS field.

    .search-thumb {
    	width: 300px;
    	height: 200px;
    	margin-bottom: 10px;
    }
    
    .search-thumb img {
    	width: 100%;
    	height: 100%;
    }

    Best regards,
    Ismael

    in reply to: Problems setting up WooCommerce Pages #164978

    Hello ElementArt!

    Please follow these steps.

    1.) Activate the woocommerce plugin then Install the woocommerce pages by clicking the violet bar on top of woocommerce settings.

    2.) Go to Menus > Appearance > insert the Shop menu as shop page.

    3.) Create some products.

    4.) If you want to create another shop page, create a new page then go to Advance Layout Editor. Insert the Product Grid under Plugin Additions.

    Please watch this short video: http://www.mediafire.com/play/t23t01r4zdeka68/Enfold+-+Quick+Shop+Page+Installation.mp4

    Best regards,
    Ismael

    • This reply was modified 12 years, 2 months ago by Ismael.
    in reply to: Multiple different sized footer columns #164975

    Hello!

    Glad it worked. :)

    Best regards,
    Ismael

    in reply to: Change thumbnail size #164755

    Hello!


    @set_carsten
    : Thanks for the tip.


    @denye
    : You can do @set_carsten’s suggestion then you need to manually upload the images again if you don’t want to regenerate them.

    Best regards,
    Ismael

    in reply to: post in lightbox #164750

    Hello wesdacar!

    I think this is a bit complicated. You need to hire a freelance developer to modify the theme for you or look for a plugin.

    I’m not sure if this will help but you can try this plugin: http://wordpress.org/plugins/lightbox-pop/

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #164749

    Hello!

    @mmi: Thank you so much for your contribution. This will help a lot of users. :)

    Cheers!
    Ismael

    in reply to: any way to change the default height of images in the mobile? #164748

    Hey cpUSA!

    What slider you’re currently using? A link to your website will help.

    Regards,
    Ismael

    in reply to: slider on homepage broken in iphone on rotate #164747

    Hey cpUSA!

    Can you give us a link to your website? I’ll Kriesi and Devin to check this out.

    Best regards,
    Ismael

    in reply to: Enfold Child: Widget Text Color #164744

    Hello!

    You can add this on your custom.css or Quick CSS:

    .textwidget {
    color: #545354;
    }

    Regards,
    Ismael

    in reply to: Chnage post title color? #164743

    Hey mmi!

    You can add something like this on your custom.css or Quick CSS:

    
    .post-title.entry-title {
    color: blue;
    }

    Regards,
    Ismael

    in reply to: Changing the number of posts per page #164742

    Hi blueunderground!

    Edit the page then edit the Portfolio Grid element. Look for “Post Number”, set it to 36 or more.

    Best regards,
    Ismael

    in reply to: Post Page Titles #164741

    Hello Compustar82!

    Please give us a link to your website. We need to inspect it to give you a proper solution.

    Regards,
    Ismael

    Hi lostbox!

    Have you tried disabling all plugins like Jetpack, WP Importer etc? Please give us a link to your website.

    Cheers!
    Ismael

    in reply to: Logo temporary insert… #164730

    Hello earthyblue!

    Go to Enfold > Theme Options > Logo. Upload your temporary logo. :)

    Watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes

    Regards,
    Ismael

    in reply to: menu text position #164729

    Hi!

    What line are talking about here? The footer menu should be hidden on the mobile view.

    Regards,
    Ismael

    in reply to: Multiple different sized footer columns #164728

    Hi Imburr!

    You can choose 3 columns on Enfold > Footer then add this on your custom.css or Quick CSS:

    #footer .flex_column.av_one_third:nth-child(1) {
    width: 20%;
    }
    
    #footer .flex_column.av_one_third:nth-child(2) {
    width: 45%;
    }
    
    #footer .flex_column.av_one_third:nth-child(3) {
    width: 20%;
    }

    Regards,
    Ismael

    in reply to: Custom Fonts #164722

    Hi faterra!

    What font are you trying to use? If it is a google font, you can edit functions.php and find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Alef'] = 'Alef';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Alef'] = 'Alef';
    return $fonts;
    }

    Replace “Alef” with the google font you’re trying to use.

    Best regards,
    Ismael

    in reply to: Search Icon #164721

    Hello!

    Just add this on your custom.css or Quick CSS:

    #menu-item-search {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Slideshow not resizing in IE8 #164326

    Hello!

    Please try this:

    .avia-fullscreen-slider .avia-slideshow>ul>li {
    min-height: 100% !important;
    height: auto\9;
    }

    Cheers!
    Ismael

Viewing 30 posts - 63,811 through 63,840 (of 66,930 total)