Viewing 30 results - 230,911 through 230,940 (of 244,617 total)
  • Author
    Search Results
  • #212274

    Hi sineadh!

    After adding the code to functions.php file, you should be able to find Raleway font in fonts dropdown list in Enfold theme options under Styling tab. However, in your custom CSS code i see typo in font family. Please correct them as following

    font-family: 'Raleway', sans-serif;

    Regards,
    Yigit

    Hey paulrt27!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .home .content { padding-top: 0; }

    Best regards,
    Yigit

    #212266

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .entry-content-wrapper .post-title {
    font-size: 50px; }

    Best regards,
    Yigit

    #212262

    Hey yucozt!

    If you want to remove the title open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and delete

    
    $output .= "<h2 class='portfolio-preview-title entry-title' $markup><a href='{$link}'>".$entry->post_title."</a></h2>";
    

    Regards,
    Peter

    #212253

    In reply to: Search icon

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    #top #menu-item-search.menu-item-search-dropdown>a {
    font-size: 20px;
    margin-top: 10px;
    }

    Cheers!
    Yigit

    #212251

    Would love to have a field in each page where I can insert custom CSS that just apply to that page…
    Would make everything so much easier!

    #212246

    Could I please request following addition to Enfold.

    Add option in the theme to turn on / off the lightbox URL to feature images on Post pages. (as per #202971)

    Currently I do not want to have my feature image to have any link.

    I would also like to be able to edit the size and position of the Feature image in the Post view. i.e. small / medium / full width, left / right justified etc…

    Many thanks

    Mark

    #212240

    Hi!

    Feel free to request it here https://kriesi.at/support/topic/enfold-feature-requests/

    Cheers!
    Yigit

    #212236
    Valienescu
    Participant

    Hi there,

    I have problems with my website on IE. (link)
    I use Enfold

    How can I solve this problem?

    Thanks

    #212233

    In reply to: sorting item padding

    Hi MUNFORD!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .sort_width_container {
    margin: 5px 0;
    }

    Cheers!
    Yigit

    #212197

    Having the possibility to collapse sections for easier organisation would be a delight (especially when editing long one-page scrolling websites).

    #212181
    xpoveda
    Participant

    Hi, I’m doing tests using calls gravityforms by php.

    http://dev.escalamas.com/la

    When I make this call is shown but until the page load totally the form appears without the styles applied.
    How to fix this?

    I don’t like the FOUT (flash of unstyled effect)

    I created the shortcode “[hola]” with “http://wordpress.org/plugins/shortcode-exec-php/&#8221; and allow in page “la” of my site.

    The response of gravity forms support is:
    “The styles on your page are being loaded in the footer. They should be in the header, so they are loaded first, to prevent the flash of unstyled content. Chris Hajer”

    How to make this in enfold or solve the problem?.

    Thanks!!

    Xavier.

    ————–
    echo “hola” . PHP_EOL;
    $dia=date(“w”);

    if ($dia==1)
    {
    echo “LUNES” . PHP_EOL;
    }
    ..
    if ($dia==1)
    {
    echo “VIERNES” . PHP_EOL;
    }
    gravity_form(‘contactar’, false, false, false, ”, false);
    echo PHP_EOL;
    ————–

    #212180

    In reply to: Custom Hover Effects

    #212175

    In reply to: GWT 404 errors

    Hi Imburr!

    We’ll take care of them with the next theme update. For a quick fix open up /wp-content/themes/enfold/config-woocommerce/config.php and replace

    
    		//generate markup
    		$output  = "";
    		$output .= "<div class='product-sorting'>";
    		$output .= "    <ul class='sort-param sort-param-order'>";
    		$output .= "    	<li><span class='currently-selected'>".__("Sort by",'avia_framework')." <strong>".$product_order[$po_key]."</strong></span>";
    		$output .= "    	<ul>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'default')."><a href='".avia_woo_build_query_string($params, 'product_order', 'default')."'>	<span class='avia-bullet'></span>".$product_order['default']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'title')."><a href='".avia_woo_build_query_string($params, 'product_order', 'title')."'>	<span class='avia-bullet'></span>".$product_order['title']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'price')."><a href='".avia_woo_build_query_string($params, 'product_order', 'price')."'>	<span class='avia-bullet'></span>".$product_order['price']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'date')."><a href='".avia_woo_build_query_string($params, 'product_order', 'date')."'>	<span class='avia-bullet'></span>".$product_order['date']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'popularity')."><a href='".avia_woo_build_query_string($params, 'product_order', 'popularity')."'>	<span class='avia-bullet'></span>".$product_order['popularity']."</a></li>";
    		$output .= "    	</ul>";
    		$output .= "    	</li>";
    		$output .= "    </ul>";
    
    		$output .= "    <ul class='sort-param sort-param-sort'>";
    		$output .= "    	<li>";
    		if($ps_key == 'desc') 	$output .= "    		<a title='".$product_sort['asc']."' class='sort-param-asc'  href='".avia_woo_build_query_string($params, 'product_sort', 'asc')."'>".$product_sort['desc']."</a>";
    		if($ps_key == 'asc') 	$output .= "    		<a title='".$product_sort['desc']."' class='sort-param-desc' href='".avia_woo_build_query_string($params, 'product_sort', 'desc')."'>".$product_sort['asc']."</a>";
    		$output .= "    	</li>";
    		$output .= "    </ul>";
    
    		$output .= "    <ul class='sort-param sort-param-count'>";
    		$output .= "    	<li><span class='currently-selected'>".__("Display",'avia_framework')." <strong>".$pc_key." ".$per_page_string."</strong></span>";
    		$output .= "    	<ul>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page).">  <a href='".avia_woo_build_query_string($params, 'product_count', $per_page)."'>		<span class='avia-bullet'></span>".$per_page." ".$per_page_string."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page*2)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 2)."'>	<span class='avia-bullet'></span>".($per_page * 2)." ".$per_page_string."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page*3)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 3)."'>	<span class='avia-bullet'></span>".($per_page * 3)." ".$per_page_string."</a></li>";
    		$output .= "    	</ul>";
    		$output .= "    	</li>";
    		$output .= "	</ul>";
    
    

    with

    
    		//generate markup
    		$output  = "";
    		$output .= "<div class='product-sorting'>";
    		$output .= "    <ul class='sort-param sort-param-order'>";
    		$output .= "    	<li><span class='currently-selected'>".__("Sort by",'avia_framework')." <strong>".$product_order[$po_key]."</strong></span>";
    		$output .= "    	<ul>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'default')."><a href='".avia_woo_build_query_string($params, 'product_order', 'default')."' rel='nofollow'>	<span class='avia-bullet'></span>".$product_order['default']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'title')."><a href='".avia_woo_build_query_string($params, 'product_order', 'title')."' rel='nofollow'>	<span class='avia-bullet'></span>".$product_order['title']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'price')."><a href='".avia_woo_build_query_string($params, 'product_order', 'price')."' rel='nofollow'>	<span class='avia-bullet'></span>".$product_order['price']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'date')."><a href='".avia_woo_build_query_string($params, 'product_order', 'date')."'>	<span class='avia-bullet'></span>".$product_order['date']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'popularity')."><a href='".avia_woo_build_query_string($params, 'product_order', 'popularity')."' rel='nofollow'>	<span class='avia-bullet'></span>".$product_order['popularity']."</a></li>";
    		$output .= "    	</ul>";
    		$output .= "    	</li>";
    		$output .= "    </ul>";
    
    		$output .= "    <ul class='sort-param sort-param-sort'>";
    		$output .= "    	<li>";
    		if($ps_key == 'desc') 	$output .= "    		<a title='".$product_sort['asc']."' class='sort-param-asc'  href='".avia_woo_build_query_string($params, 'product_sort', 'asc')."' rel='nofollow'>".$product_sort['desc']."</a>";
    		if($ps_key == 'asc') 	$output .= "    		<a title='".$product_sort['desc']."' class='sort-param-desc' href='".avia_woo_build_query_string($params, 'product_sort', 'desc')."' rel='nofollow'>".$product_sort['asc']."</a>";
    		$output .= "    	</li>";
    		$output .= "    </ul>";
    
    		$output .= "    <ul class='sort-param sort-param-count'>";
    		$output .= "    	<li><span class='currently-selected'>".__("Display",'avia_framework')." <strong>".$pc_key." ".$per_page_string."</strong></span>";
    		$output .= "    	<ul>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page).">  <a href='".avia_woo_build_query_string($params, 'product_count', $per_page)."' rel='nofollow'>		<span class='avia-bullet'></span>".$per_page." ".$per_page_string."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page*2)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 2)."' rel='nofollow'>	<span class='avia-bullet'></span>".($per_page * 2)." ".$per_page_string."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page*3)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 3)."' rel='nofollow'>	<span class='avia-bullet'></span>".($per_page * 3)." ".$per_page_string."</a></li>";
    		$output .= "    	</ul>";
    		$output .= "    	</li>";
    		$output .= "	</ul>";
    
    

    Regards,
    Peter

    #212174
    Coronacom
    Participant

    Hi Kriesi

    I just moved my site over the Enfold and when I have WordPress SEO activated I find that my homepage cannot load and an error message displays saying there are too many redirects appears.

    The problem is only related to my homepage, the other pages will load fine.

    I’m wondering if there is something missing or a piece of code I have in my SEO setup that is causing this?

    Would anyone have a solution to this that wouldn’t involve re-installing the plugin. Would that even be a solution?

    Thanks!

    #212165

    In reply to: Author Information

    Hey!

    You can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/

    Cheers!
    Peter

    #212156

    In reply to: Enfold Showcase

    Thanks!

    #212155

    Sorry Ismael, I have just tried changing the header font for a second time in the styling tab and again it doesn’t change on the front end so fully back to square one!

    #212153

    Hi Ismael,

    Thanks for looking in to this. I have changed the “enfold.css” file permission to 755 and this does now resolve the issue I had with the header font not changing on the front end. However the issue with the footer styling is still evident, despite this change. The colours do not change on the front end to match what has been entered in the back end via the styling tab.

    My footer on http://www.icfurniture.co.uk is displaying in a hot pink with stripes colour (which I changed to on Friday that didn’t display until this morning when I started my computer up having been off on the Saturday and Sunday) I have this morning changed the colour to display as #4a4a4a (A charcoal Grey) but on the front end it still shows the hot pink with the stripes from Friday…..

    I have tried viewing Chrome, Firefox, IE and Safari – all display the old footer in pink.

    Anything else I can try..?

    Thanks

    #212149

    Hi Liam, thanks for chiming in!

    Well, it doesn’t work in IE9, and there’s no compatibility mode.

    But on the Enfold demo page, 3 columns render perfectly:

    Enfold demo page

    Hopefully, there’s a fix, since we have a number of users who still depend on IE9 here.

    #212143

    Hey albrowncompany!

    Maybe Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file and go to Enfold > Theme Options to regenerate the dynamic stylesheet (hit the green “Save all changes” button).

    Regards,
    Peter

    #212136

    In reply to: Portfolio questions

    Hey!

    Open up /wp-content/themes/enfold/single-portfolio.php and replace

    
    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    

    with

    
    $avia_config['size'] = 'full';
    

    Regards,
    Peter

    #212135

    In reply to: Header CSS Issue –

    Hi!

    I couldn’t find any obvious reasons why the social bookmarks don’t work but it seems like the browser doesn’t load the enfold/css/layout.css properly. Please try to use ftp: https://vimeo.com/channels/aviathemes/67209750 to re-install the theme files and overwrite all theme files on your server. Maybe one or more files are corrupt/damaged and this styling issue is just a side effect.

    Best regards,
    Peter

    #212129

    Hey!

    The image links do not contain an alt text or description text at the moment. Please go to Media > Library, edit the image(s) and insert some text into the “Alternative” and “Description” text field: http://www.clipular.com/c/6564099634757632.png?k=1teomXvbIbplXGlamY9sDokB6bk

    Regards,
    Peter

    #212128

    Hi Ismael!

    Thanks for replying!

    Unfortunately, we’re developing this locally, for now.

    I am running the very latest version of Enfold.

    #212105
    VladInfo
    Participant

    Hi.
    After pressing the activation – Admin panel was white page and edit anything. I tried an install theme for WordPress 3.8 and 3.7.
    Installation was under the instruction. This new site, the new database, my server: apache 2.2.25; php 5.4.17; mysql 5.5.33
    Can I get an older version of Enfold Theme?
    Help, please.
    My email for reply
    (Email address hidden if logged out)

    Thanks in advance,
    Vlad.

    • This topic was modified 12 years, 3 months ago by VladInfo.
    #212103

    Hi!

    It looks like the advanced search limiting the search to just a single forum isn’t available unfortunately.

    As for the styling, this is a custom styled and set up version of bbPress that isn’t available with the theme at the moment.

    We have the theme docs online here: http://kriesi.at/documentation/enfold/

    And this is a good starting point for setting up bbPress: http://www.wpbeginner.com/wp-tutorials/how-to-add-a-forum-in-wordpress-with-bbpress/

    Best regards,
    Devin

    #212093

    Topic: Author Information

    in forum Enfold
    MtnStreamGroup
    Participant

    I’ve become a guest author on a website. When I logged into the site admin panel they had a ‘Profile’ tab. When I clicked on it, it had fields for all the major social media networks and button to change my photo for the author avatar. However, when I go to Users>Your Profile I don’t see fields for the same social media networks as on the other site and there’s no avatar. Is this not included in Enfold or am I missing a function of WordPress that needs to be included?

    And on another site I saw where the author photo was next to the blog post and when you hovered over it their social media contact information dropped down. How do we get that?

    #212091

    Hi!

    Please take a look at this link http://www.w3schools.com/css/ and this link https://developers.google.com/chrome-developer-tools/
    You can right click on any element you would like to customize and click Inspect Elements on Chrome or Firefox to find which class or ID to target, then you can apply custom CSS code in Quick CSS.
    You are welcome! Let us know if you have any other questions or issues

    Best regards,
    Yigit

    This reply has been marked as private.
Viewing 30 results - 230,911 through 230,940 (of 244,617 total)