Viewing 30 results - 5,881 through 5,910 (of 7,495 total)
  • Author
    Search Results
  • #369332

    Hi solarmediapro!

    Thank you for using Enfold.

    This is the first time someone reported such issue. Make sure that you’re ftp credentials are not compromised. Change it immediately. Try to install security plugins to avoid this in the future. Search the plugins repository for any available security plugins. I haven’t use one myself so I won’t be able to suggest anything. Another security measure that you can add is captcha fields on WP login. I’ll ask the rest of the support team to take a look.

    Regards,
    Ismael

    #369212
    Groeier!
    Participant

    Hello,

    Please take a look at response #163800
    I’ve managed to alter the function-enfold.php file to but the search icon in the secundary menu,
    but how do I put the altered code in my child theme so when I overwrite the theme with an update it keeps the button that way?

    Greets Jeen

    #368717
    holmesgroup
    Participant

    Hi there,

    I’m loving Enfold. I’ve not come across a more versatile or better supported theme. Thank you!

    My searching has surfaced the following thread, which mentioned the Corona content slider.
    https://kriesi.at/support/topic/enfold-simple-content-slider-like-corona-has-it/

    I’d love to adjust the Enfold content slider to emulate this, so that the user can see the number of pages there are to scroll through (rather than just arrows), and for these page numbers to be located at the foot of the content, as in the Corona theme. This just seems like a more clear location to show people that they need to click for more content when they’ve got to the end of the text.

    I suspect this is way more complicated than it seems, but I thought I’d ask, as this would be the perfect solution for our website.

    Thanks in advance.

    #368243

    Hey MathiasVie!

    Thank you for using our theme.

    You can change it with a filter. In functions,php at the end put the following:

    
    function my_search_text( $search_messages )
    {
    
    // modify the array here
    
    return $search_messages;
    }
    add_filter( 'avf_ajax_search_messages', 'my_search_text', 10, 1);
    
    

    The possible values to change you find at

    enfold\functions-enfold.php line 105:

    
    	    $search_messages = array(
    	            'no_criteria_matched' => __("Sorry, no posts matched your criteria", 'avia_framework'),
    	            'another_search_term' => __("Please try another search term", 'avia_framework'),
    	            'time_format'         => get_option('date_format'),
    	            'all_results_query'   => http_build_query($_REQUEST),
    	            'all_results_link'    => home_url('?' . http_build_query($_REQUEST)),
    	            'view_all_results'    => __('View all results','avia_framework')
                );
    

    Cheers!
    Günter

    #368220
    johnlaunstein
    Participant

    Hi – I’m admittedly a newbie to WordPress and Enfold but THOUGHT I understood from the demo instructional video on Enfold support pages how to change one of my main menu sets to a megamenu. I followed the steps with no issue, saved the menu, but it does not result in any changes to my site, on any of my computers, with browser caches cleared, etc. When I go back to Appearance–menus it does show up correctly (parent menu item designated as megamenu with all pages listed as desired) but I cannot seem to make it effect the live version of the site. Is there a simple step I’m missing? I know in the demo the presenter saved the changes and went directly to the front end, refreshed and there it was…not so for me.

    Thanks and sorry in advance if I’m missing something obvious! I did search the support forums first but did not see an obvious answer.

    With appreciation,

    John

    #367956
    decode
    Participant

    hi,

    where can I find the string to translate these texts?
    http://screencast.com/t/MOYNS9DGicpO

    I tried to translate it through both Enfold and Woocommerce, none of them works
    I suppose it’s in some search functions??

    thanks :)

    #367639

    Hey,

    I think it’s a bug. I hope it gets fixed with the next Enfold update.
    You’ll also notice it if you’re on any other page and mouse over the menu item.

    For now you can fix it with the following CSS:

    
    .html_header_searchicon_disabled #top .main_menu .menu > li:last-child > a .avia-menu-fx {
        left: 0px;
    }

    cheers

    #367581

    Hey!

    See here for downloading our Enfold child theme, http://kriesi.at/documentation/enfold/downloads/.

    Add this to the bottom of your child theme functions.php file.

    
    add_action('init', 'portfolio_register_extended', 999 );
    function portfolio_register_extended()
    {
    	global $avia_config;
     
    	$labels = array(
    		'name' => _x('Portfolio Items', 'post type general name','avia_framework'),
    		'singular_name' => _x('Portfolio Entry', 'post type singular name','avia_framework'),
    		'add_new' => _x('Add New', 'portfolio','avia_framework'),
    		'add_new_item' => __('Add New Portfolio Entry','avia_framework'),
    		'edit_item' => __('Edit Portfolio Entry','avia_framework'),
    		'new_item' => __('New Portfolio Entry','avia_framework'),
    		'view_item' => __('View Portfolio Entry','avia_framework'),
    		'search_items' => __('Search Portfolio Entries','avia_framework'),
    		'not_found' =>  __('No Portfolio Entries found','avia_framework'),
    		'not_found_in_trash' => __('No Portfolio Entries found in Trash','avia_framework'),
    		'parent_item_colon' => ''
    	);
     
        $permalinks = get_option('avia_permalink_settings');
        if(!$permalinks) $permalinks = array();    
    
        $permalinks['portfolio_permalink_base'] = empty($permalinks['portfolio_permalink_base']) ? __('portfolio-item', 'avia_framework') : $permalinks['portfolio_permalink_base'];
        $permalinks['portfolio_entries_taxonomy_base'] = empty($permalinks['portfolio_entries_taxonomy_base']) ? __('portfolio_entries', 'avia_framework') : $permalinks['portfolio_entries_taxonomy_base'];
     
    	$args = array(
    		'labels' => $labels,
    		'public' => true,
    		'show_ui' => true,
    		'capability_type' => 'post',
    		'hierarchical' => false,
    		'rewrite' => array('slug'=>_x($permalinks['portfolio_permalink_base'],'URL slug','avia_framework'), 'with_front'=>false),
    		'query_var' => true,
    		'show_in_nav_menus'=> true,
    		'taxonomies' => array('post_tag'),
    		'supports' => array('title','thumbnail','excerpt','editor','comments')
    	);
    	
    	
    	$args = apply_filters('avf_portfolio_cpt_args', $args);
    	$avia_config['custom_post']['portfolio']['args'] = $args;
     
    	register_post_type( 'portfolio' , $args );
    
    	$tax_args = array(	
    		"hierarchical" => true,
    		"label" => "Portfolio Categories",
    		"singular_label" => "Portfolio Category",
    		"rewrite" => array('slug'=>_x($permalinks['portfolio_entries_taxonomy_base'],'URL slug','avia_framework'), 'with_front'=>true),
    		"query_var" => true
    	);
     
     	$avia_config['custom_taxonomy']['portfolio']['portfolio_entries']['args'] = $tax_args;
    
    	register_taxonomy("portfolio_entries", array("portfolio"), $tax_args);
    
    	//deactivate the avia_flush_rewrites() function - not required because we rely on the default wordpress permalink settings
    	remove_action('wp_loaded', 'avia_flush_rewrites');
    }

    Regards,
    Elliott

    • This reply was modified 11 years, 3 months ago by Elliott.
    #366992
    AlexKK
    Participant

    Hello!

    I’ve read this article
    http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/
    and also searched around the forum quite a bit but I’m still wondering if it’s possible to order posts by a custom field.

    For example I could add a ‘priority’ field and add numbers 1,2,3… and order in ascending order. Would that be possible?

    Thanks in advance!

    #366865
    saremcdee
    Participant

    Hi there,

    I just purchased the Enfold theme today and I can’t seem to locate the search function here on the forum, so I apologise if this question has been covered in another topic. I’m looking to use the ‘coming soon’ demo as a landing page while I build the rest of the site in the background – is this possible at all? Many thanks. Sarah

    hi, Elliott

    I tried adding the code to functions.php, but I got this error and the site became unavailable.
    Parse error: syntax error, unexpected T_NS_SEPARATOR, expecting ‘)’ in /home/bouncin6/public_html/gladwave/wp-content/themes/enfold/functions.php on line 526

    I am not sure about the instruction,
    I added this code to functions.php,

    if(!function_exists('mysql_real_escape_string_alt')) {
    function mysql_real_escape_string_alt($value)
    {	
    	global $avia_config;
    
        $search = array("\\",  "\x00", "\n",  "\r",  "'",  '"', "\x1a");
        $replace = array("\\\\","\","\\n", "\\r", "\'", '\"', "\\Z");
    
        return str_replace($search, $replace, $value);	
    	}
    }
    

    and then I was lost, I don’t know which line to be replaced with

    $content = mysql_real_escape_string_alt($content);

    #366364

    Hi,
    Dashboard > Enfold Theme Options > Header > Extra elements “Append search icon to main menu”

    #366035

    Hi oestersund!

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

    .html_main_nav_header #top .main_menu .menu>li:last-child>a, .html_bottom_nav_header #top #menu-item-search>a {
    padding-right: 13px;
    }

    Please make sure to disable CSS minifying feature before applying the code

    Cheers!
    Yigit

    #365979

    In reply to: search & filter plugin

    #365951

    Topic: search & filter plugin

    in forum Enfold
    ftt123
    Participant

    hello! I am going to use the Search & Filter plugin in my enfold theme, but I do not how to do the second part of this:

    1. To display Search & Filter all you need to do is a use a shortcode:
    [searchandfilter taxonomies=”category,post_tag”]
    This will display a search box, a category dropdown and a tag dropdown. You can use the shortcode within posts/pages and widget areas.

    2. To use this within a theme file you simple need to call the do_shorcode function with the shortcode above within the theme file:
    <?php echo do_shortcode( ‘[searchandfilter taxonomies=”category,post_tag”]’ ); ?>

    thanks!!

    #365813

    Hey Antonio!

    Thank you for using Enfold.

    Reported issues regarding Yoast are declining on the past few weeks, not sure if they just retain the old version. Most of the issues direct to yoast page analysis not working well with the advance layout builder but this is something Yoast has to improve on. Search engines can still crawl content made with the advance layout builder so this is nothing to worry about. Please test it on a development site first.

    Best regards,
    Ismael

    #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

    #365625

    Topic: Blog Categories

    in forum Enfold
    kls1138
    Participant

    Hello,

    I hope all is well. I am having trouble with a few plugins that allow the user to activate them by signifying specific categories…so they’re activated in some categories but not others.

    In researching, I found that my Enfold Breadcrumbs are being displayed incorrectly in some cases. In some cases, it shows correctly, ie: Parent Category > Child Category … In other cases, it shows Child Category > Parent Category.

    I have provided sample links to category pages for your review. Everything looks correct in the WordPress Dashboard so I’m wondering if it’s a problem with Enfold. Your insight is greatly appreciated!

    #365369
    GOWD
    Participant

    Hi,

    I have been searching for something that will give me the same Portfolio box column styling effect that you can create in your Upscale theme and Blog Grid styling from Shoutbox but to use it in Enfold.

    This is the demo page using the styled column boxes.

    http://kriesi.at/themedemo/?theme=upscale

    Also the Blog grid display in

    http://kriesi.at/themes/shoutbox/category/news/

    How can I achieve the same in Enfold?

    Do all your other Kriesi themes contain the Advanced Layout Editor?

    #364911

    Topic: Grid Loop Question

    in forum Enfold
    Eagles1227
    Participant

    Hey, all!

    I am trying to find the file that houses the php for the blog grid layout. Could you please direct me?

    Reason being, I am trying to make the “Search & Filter” plugin look the same as the grid layout: http://tjmpropertygroup.com/philadelphia-condos/rittenhouse-square.

    Not directed towards support, but has anyone successfully been able to customize this plugins css to mimic that of the Enfolds Grid Layout?

    This is turning into a project!

    #364588

    Hey Elliott,

    To answer your questions: In the Enfold settings Open Sans is set as the theme’s header & body font. That is also all I did; set the font settings. I can confirm that I’ve made no manual changes relating to Enfold’s font settings (except for the function fixing the font weight issue). Also, I’m using a LAMP setup.

    However, you’re right about 400 & 600 being the default font weights, but that only seems to be the case when one is not logged in to WP. Once logged in, the id='open-sans-css' link tag line is added to the header, adding 300 to the available font weights. It seems the id='open-sans-css' line overrides the default:

    <link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=Open+Sans:400,600' type='text/css' media='all'/>

    which, as you can see, loads 400 & 600 (only when one is not logged in to WP).

    UPDATE (root of the problem found!):

    Instead of only searching through Enfold’s core code, I decided to code search through all of the WP files, based on the keyword “open-sans”. And I finally found out where the id='open-sans-css' link tag line is coming from! It’s added to WP’s header by wp-includes > script-loader.php. Just look for the following line in script-loader.php:

    $open_sans_font_url = "//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=$subsets";

    WP happens to use Open Sans for the Admin area and adds Open Sans (including 300) when logged in to WP.

    Possible solutions to prevent future Open Sans font weight confusion/issues: Either WP has to drop 300 or Enfold has to adapt to WP and add 400, 600 and 300 as default Open Sans font weights. Just my 2 cents though.

    Not sure whether this will lead to a core code fix, but it at least clears everything up :)

    Kind regards,

    Ralph

    #364481

    In reply to: Cf7

    Hey SecretDiamonds!

    Thank you for using Enfold.

    You can use this on Quick CSS or custom.css:

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
    border-color: transparent;
    background-color: #e6dab1;
    color: #000000;
    }

    Cheers!
    Ismael

    #364120

    Hi Votan!

    yes, you need one for every website.
    If you login into your themeforest accunt and search for enfold, you can just purchace another licence.

    For more information:
    https://kriesi.at/support/topic/enfold-more-licenses/#post-170434
    http://themeforest.net/licenses

    Regards,
    Andy

    #364040
    morecoffee
    Participant

    Aloha!

    I’m running Enfold 3.0.4 on this domain: http://www.dwh-ostfriesland.de

    I’ve the same problems with the overlapping menu when the browser window has been resized. I fixed that by placing the menu below the logo.

    Now the icons for the search, forward and back arrow in the layer slider and the #top icon aren’t displayed anymore. :-(

    Flushing the browser’s cache didn’t help.

    Tested in IE 11, Firefox 34.0.0 and Chrome 39.0.2

    Screens:

    Overlapping menu

    Missing icons

    #363573
    slui
    Participant

    Hi,

    I’m having a problem with pagination since the update of Enfold. I’ve researched this and found the same issues here:

    https://kriesi.at/support/topic/problems-with-page-2-of-archive-for-and-some-others-troubles/

    On the Brands page, I have the portfolio component set to 4 columns of 16 items per page. I have a total of 25 items that I want to display. It takes two pages. When I click on page 2, I get a “Error 404 – page not found” error.

    I thought maybe the color section that is enveloping the portfolio component causing the problem. I also tried it without a “layout component” and I’m still getting the error.

    At the moment, I’ve setup the portfolio to display all the items on a single page to get around the issue.

    I look forward to your response.

    • This topic was modified 11 years, 3 months ago by slui. Reason: Changed name and password
    #362977

    Hi kristenangel!

    Please go to Enfold/includes and open loop-index.php file and search “text-sep” and change / as needed.
    If you would like to remove it, please add following code to Quick CSS

    .text-sep {
    color: transparent!important;
    }

    Regards,
    Yigit

    I have been struggling with this for days trying to figure it out (doing a lot of Google searches) and then a work around came to me. I am posting the solution here just in case somebody else looks this up because they want a sign up option in the header area.

    First add this to your functions.php:
    add_theme_support(‘avia_template_builder_custom_css’);

    Then add this to your Quick CSS:
    .shadedbox.avia_textblock { background-color: rgba(0,0,0,0.6); padding: 10px; }

    Then add this to your text box in the ‘Custom Css Class’ where you can add a contact form using Jetpack:
    shadedbox

    Change your font to white and you are all set.

    Hope this helps somebody, best of luck!!

    Source to help:

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

    Hey!

    mbamar: I know that the theme options can be translated because of this: https://kriesi.at/support/topic/turning-off-enfold-back-end-translation/#post-323558

    Alright. Looks like I’m wrong. After I added the translation manually via text editor then search for the string on the codestyling localization plugin, I didn’t check if the string is really translated. It’s not. Not sure why. Thanks for sharing.

    @Guenn007: Glad it is working for you. :)

    Regards,
    Ismael

    #362510
    lakepharmacy
    Participant

    Hi, I searched the forums but could not find a resolution to the issue I’m experiencing with my Enfold themed site. I did try multiple things to get the slider working again, including:
    1. Disabling all plugins
    2. Creating a separate test page
    3. Removing custom CSS
    4. Checked in different browsers

    Is there anything else I can try to get the slider working again? I can see the relevant code in Chrome/Firefox developer mode but am unable to determine why the slider doesn’t want to render. I’ve provided the site URL as private content since we’re not ready to share the site publicly yet. Please let me know if login credentials would help.

    #362302
    Munford
    Participant

    Hi
    Not sure what I need but I want to make a filterable sorted portfolio –
    I have portfolios with categories such as: Climbing, Trekking, Exploring with sub categories under each with the same countries )Colombia, Peru, etc.) I want to be able to have a filtered category like on this page: http://www.tirawa.com/voyages-ameriques/circuits-bolivie with a list that can be filtered to display results on the right, which link to individual portfolio pages. I have tried various ways of doing this in Enfold, my favorite theme – but can’t get it right. Am I missing something? I tried the Search and Filter plugin, but that only shows post taxonomies and not my portfolio categories and tags. I am not a developer – not sure what I need to make it work. I know I can make portfolio grids, with sortable categories, but the format is not the same. Can you help with this? Is there another theme that is better suited to this application? I appreciate your advice.
    Nancy

    • This topic was modified 11 years, 3 months ago by Munford.
Viewing 30 results - 5,881 through 5,910 (of 7,495 total)