Viewing 30 results - 7,231 through 7,260 (of 7,486 total)
  • Author
    Search Results
  • #29312

    Topic: Relevanssi error

    in forum Enfold
    JoshMetz
    Participant

    Hello. I am using the Relevanssi Search plugin. When I go to build the index I am getting the following error:

    Fatal error: Call to a member function get_catalog_ordering_args() on a non-object in /home/scmwa/scmwa.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/productslider.php on line 332

    Website URL is: http://www.SCMWA.com

    Thanks for any help you can provide.

    #139828

    Thank You, Dude and Yigit.

    Everything solved. I don’t use codestyling plugin because it indicated error (at least with previous version of Enfold), but translate .po file directly. Added code to function.php and translated extra lines in wordpress .po file.

    Just in case somebody will use this query to solve his issues as I usually do. Searching forum provides answers to most questions I have. Great job, guys!

    #139827

    Please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translat the plugin.

    Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner). If you still can’t find the text strings in the generated po file you can use the title filter to change the text. Add following code at the bottom of functions.php

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if ( $args['title'] == 'Blog - Latest News' )
    {
    $args['title'] = 'MY TEXT';
    }

    return $args;
    }

    and instead of MY TEXT insert your translation.

    The other text strings you mentioned ( “Logged in as… Log out?” “Post comment” , etc.) are not part of the theme code and you can’t translate them with the theme po/mo files. You maybe need to update the translation of wordpress ( http://codex.wordpress.org/WordPress_in_Your_Language ) or a plugin adds these text strings to the website – then you must translate the plugin.

    #138619

    I had faced the same issue, and this fix works a treat, thanks Kriesi.

    I also tried to see if I could have the js folder read from my child theme so that I don’t have issues with future Enfold updates, but I couldn’t get it to work. Is it possible to move the js folder in a child theme and have it reference properly?

    #139708

    We replaced all occurrences of entry-content with entry-content-wrapper, then we searched all files for “$content” strings and wrapped them into a div (entry-content). We further replaced all occurrences of post-title and main-title with post-title entry-title and main-title entry-title.

    The reason is that entry-content has a semantic meaning (hatom feed) which is used by Google+ to fetch the article data of a blog page. the previous structure messed this feed up so we had to change it.

    I copied this file list from our github repository:

    404.php

    archive.php

    config-templatebuilder/avia-shortcodes/portfolio.php

    config-templatebuilder/avia-shortcodes/postcontent.php

    config-templatebuilder/avia-shortcodes/postslider.php

    config-templatebuilder/avia-shortcodes/section.php

    config-woocommerce/config.php

    config-woocommerce/woocommerce-mod.css

    css/base.css

    css/layout.css

    css/shortcodes.css

    framework/php/class-framework-widgets.php

    functions-enfold.php

    includes/error404.php

    includes/helper-post-format.php

    includes/loop-archive.php

    includes/loop-author.php

    includes/loop-comments.php

    includes/loop-index.php

    includes/loop-page.php

    includes/loop-portfolio-single.php

    includes/loop-search.php

    index.php

    js/avia.js

    taxonomy-portfolio_entries.php

    template-archives.php

    template-builder.php

    #29110
    tgdigitalsolutions
    Participant

    I was able to figure out (thanks to forum search) the custom CSS to give rounder corners to the bottom of my Enfold website but I’m not having much luck finding the right code to do that on the top.

    Here’s what worked on the bottom:

    #socket {

    -webkit-border-bottom-right-radius: 10px;

    -webkit-border-bottom-left-radius: 10px;

    -moz-border-radius-bottomright: 10px;

    -moz-border-radius-bottomleft: 10px;

    border-bottom-right-radius: 10px;

    border-bottom-left-radius: 10px;

    }

    Can someone help me with the same idea for the top area? I have a boxed layout.

    Here’s a link to the test site:

    http://tgdigitalservices.com/o1/

    Thanks!

    #139575

    Hi,

    Please add following code to custom.css file or to Quick CSS section in Enfold theme options page under Styling to display right border.

    div#text-4.widget.clearfix.widget_text { left: -1%; }

    In your WordPress theme directory please go to Enfold > Includes and open Loop-search.php file and find following code in line 119

    <h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>

    and delete it. It will delete “Wollen Sie sich lieber andere Artikel oder Seiten ansehen?”

    Then find following code in line 123

    'before_widget' => '<div class="widget avia_combo_widget">',

    and change it to

    'before_widget' => '<div class="widget avia_combo_widget" style="display:none;">',

    Regards,

    Yigit

    #135940

    Hey! It seems twitter has also deprecated this way of getting the feed, thats the caue of the error. at this point it is no longer possible to easily retrieve a follower count without complicated authentication. Something which I dont wont to add to the theme itself, so I recommend to search for a plugin that can do that….

    The errors will be fixed with the next update

    Sorry for that :/

    #139138

    You can find it in wp-contentthemesenfoldconfig-woocommerceconfig.php – search for

    if($product->product_type == 'variable' && empty($output))
    {
    $output = "<a class='add_to_cart_button button product_type_variable' href='".get_permalink($product->id)."'><span class='avia-font-entypo-fontello'>". $avia_config['font_icons']['details'] ."</span> ".__('Select options','avia_framework')."</a>";
    }

    if($product->product_type == 'simple')
    {
    $output .= "<a class='button show_details_button' href='".get_permalink($product->id)."'><span class='avia-font-entypo-fontello'>". $avia_config['font_icons']['details'] ."</span> ".__('Show Details','avia_framework')."</a>";
    }

    You need to replace avia-font-entypo-fontello span with an image or another font icon if you want to change the look of the icons.

    #139106

    Hi festivedaisy,

    While possible, it would take a good bit of customization from a freelance developer. You can also request it as a future feature in the Enfold feature request topic here: https://kriesi.at/support/topic/enfold-feature-requests

    The basics of what it would entail would be adding the WordPress search function into the header/footer. See: http://codex.wordpress.org/Function_Reference/get_search_form

    The placement and styling to keep it all cross browser compatible and responsive is where the meat of the time and customization would be.

    Regards,

    Devin

    #114985

    The translation seems to work for me(search field, post meta text strings, etc. are translated): http://www.screenr.com/n3rH – maybe try to clear the browser cache if it doesn’t work for you. Please note that not all text strings are translatable with our theme files – i.e. the login form here: http://infusion.in/?page_id=246 is not part of the theme code but it’s a third party widget (plugin code) and you must translate the plugin to translate the login form.

    #139252

    In reply to: Post Slider

    Hi!

    Enfold does not support a vertical post or image slider. You can try third party plugins from here: http://wordpress.org/plugins/search.php?q=vertical+post+slider

    Regards,

    Peter

    #28928
    InfinityJane2013
    Participant

    Finally i succeed with danish language, but when i tried this (i read in another thread in here), it cam up with something i do not understand

    http://wordpress.org/plugins/codestyling-localization/ to translate the theme text strings. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    i did the above – and it says:

    Warning: The actual loaded translation content contains mixed textdomains and is not pure translateable within one textdomain.

    It seems, that there is code contained extracted out of other plugins, themes or widgets and used by copy & paste inside some source files.

    The affected unknown textdomains are: wordpress-importer, woothemes, woocommerce, plugindomain, envato, avia_builder, LayerSlider

    What does that mean? :)

    #28911

    Topic: Specific IDX problem

    in forum Enfold
    CurlyHost
    Participant

    So my client wants a Real Estate site – we’re using Enfold. We are also using the IDX plugin. The IDX plugin automatically generates pages for Real Estate agents. The pages that are created, however, are formatted like blog posts. I hid the icon and dashes to make it look less blog like but this will be an issue down the line.

    e.g.

    http://test.curlyhost.com/homes-for-sale-search/

    http://test.curlyhost.com/homes-for-sale-toppicks/EastGrandRapidsWaterfrontHomes/28086/

    Any idea on how to fix this? On how to make blog posts be formatted like blog posts and these dynamically created pages to be formatted like pages?

    I know you guys don’t support third party plugins, but any thoughts in the right direction would be greatly appreciated.

    Hi Josue,

    I added it to the Quick CSS field of ENFOLD settings section but it probably took out all the portfolios from the widget area so the outcome was none of the portfolios showed up. While I was trying to update and save the page, I got this error message,

    Fatal error: Call to undefined function layerslider_init() in /home/content/30/11045530/html/template/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider.php on line 121

    Do you have any idea what might have caused this? The page I got this from is http://acutta.com/template/?page_id=2.

    Then I tried a different page and now you can see the portfolio list at http://acutta.com/template/?page_id=2307.

    However, as you can see from the 2307 page, I got these messages,

    Nothing Found

    Sorry, the post you are looking for is not available. Maybe you want to perform a search?

    For best search results, mind the following suggestions:

    Always double check your spelling.

    Try similar keywords, for example: tablet instead of laptop.

    Try using more than one keyword.

    Feel like browsing some posts instead?

    On the page, I only have the ENFOLD Latest Portfolio widget there. Not sure where these messages came from.

    And BTW, the page directly changed to “http://acutta.com/template/?post_type=product&#8221; from “http://acutta.com/template/?page_id=2307&#8221; and don’t know why is that.

    Sorry Josue, I asked a lot of questions here. Thanks again for your assistance.

    Thanks,

    #138747

    Alright I resolved some of the issues myself searching around and trying things, the last thing I need to resolve with the toggles is the color of the little “plus sign” button (active, inactive, and hover states) and the toggle’s borders (all 3 states as well). I want the plus sign button to be white and the borders to remain color #404852.

    thanks for all the help so far!

    josh

    #114824

    Please add product thumbnails to search page results instead of the numbers.

    #136219

    In reply to: Layer Slider problem

    I’m also having a problem with line 121, when someone does a search through the search box they receive:

    Fatal error: Call to undefined function layerslider_init() in /homepages/19/d178762827/htdocs/wordpress-Backup/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider.php on line 121

    Any word on what causes this? I’d like my viewers to be able to use this search box.

    You can test it out here: http://onesourcegraphics.org/creative-differences/

    left sidebar

    #28780
    jklillibridge
    Participant

    Hello,

    I have The Events Calendar Pro plugin installed on my site (latest version) and I noticed that on the actual calendar or event list pages, the Enfold navigation search does not work. You will noticed that if you click on the search icon in the nav bar on this page http://millcreekmetro.wpengine.com/events/ (hosted on WPengine) , what appears to be part of the search box popup styling shows up in the center bottom of the screen. I have Enfold 2.0.1 installed. Please let me know if there is something I can do to fix this. Thanks!

    #28772

    Topic: Widgets Cut Off

    in forum Enfold
    egrealtor
    Participant

    Hello, please take a look at http://www.jeffkrausrealestate.com/idx/city/newportbeach

    There is a search widget I am using and it is cutoff. I think it’s because the sidebar is too narrow. There is a lot of padding in this theme, so I am looking to have less white space to fit everything. Do you have a theme you could recommend, maybe Incarnation? Or can some adjustments be made with Enfold.

    Thanks for your help!

    #138463

    Hi,

    Its a little more than the default support covers. You can request feature on https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Yigit

    #28748
    egrealtor
    Participant

    Hello, is there an easy to globally reduce the spacing between content elements in Enfold? Please take a look at:

    http://jeffkrausrealestate.com/search/

    There is a lot of space between rows and columns and I would like everything to get closer together. Thanks for your help!

    #28715
    BeeCee
    Participant

    Hi,

    I would like to use ENFOLD’s “latest news” widget in that way, once that it shows only the “latest news” of category A, and twice (as another widget below) the “latest news” of category B.

    Is there a solution for it, or if this won’t work, a plugin?

    I don’t know for what to search …

    Thanks.

    #28682
    breatheorange
    Participant

    Open enfold demo or my site dev.bigthumb.com and the search icon in the menu bar is a pause button. Bug? How do I get this fixed?

    #135582

    In reply to: Entypo Font Update

    Hi Tom,

    The search icon should still work in IE8. It does on my live install, my personal site and the past dozen or so client sites I’ve built with Enfold. All tested with native IE8, Enfold 2.0.1 and WordPress 3.6.

    Regards,

    Devin

    #137963

    Do you mean the standard text strings like on the search page: http://www.volantexrc.com/cn/?s= (“If you are not happy with the results bellow please do another search”, etc.)? If yes you must translate these strings with a po/mo translation file. I’d suggest to generate the po file with Codestyling: http://wordpress.org/plugins/codestyling-localization/

    Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Afterwards select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Or do you want to translate i.e, “ABOUT US”? If yes just open up the textblock element (seems to be part of a color section) and replace the text with your translation…

    #138083

    Hi tonaua,

    With an issue like that it would be best if we could just inspect it live. You can obfiscate your url from search engines by using http://goo.gl/

    Regards,

    Devin

    #28635
    artistic24459
    Participant
    #137781

    ok, I found a perfect solution, that shows automatically the excerpts, too – thanks to Dude’s code modification with using the plugin Relevanssi:

    Here is the code modification, so that Relevanssi works perfect with ENFOLD:

    https://kriesi.at/support/topic/instant-search-not-matching-search-results#post-135415

    #137916

    You can change it in wp-contentthemesenfoldframeworkphpclass-form-generator.php – search for

    $this->output  = '<form action="'.$params['action'].'" method="post" class="ajax_form '.$extraClass.'" data-avia-form-id="'.$this->formID.'"><fieldset>';

Viewing 30 results - 7,231 through 7,260 (of 7,486 total)