Viewing 30 results - 239,521 through 239,550 (of 244,405 total)
  • Author
    Search Results
  • #138438

    In reply to: Mail subject

    I just noticed that Kriesi added a form id to the input fields with the update. I changed the code above to incorporate this change.

    The answer to the question “What do you mean by “if your field name is different”?” – Enfold allows you to change the “Form Element Label”

    This label text will be used for the form name too. If your “subject” field is not labeled with “subject” the above code will not work. You’d need to replace the word “subject” in

    $new_post['subject_'.

    with your field label text – i.e. if the field label is “Test” the code would look like

    add_filter('avf_form_subject','avia_change_mail_subject', 10, 3);
    function avia_change_mail_subject($subject, $new_post, $form_params)
    {
    $subject = urldecode($new_post['test_'.(avia_form::$form_id - 1)]);
    return $subject;
    }

    jackyking
    Participant

    Sorry that I am opening a new topic. I forgot to ask before closing the last one related to the login/register links.

    I understood that ENFOLD comes with lightbox feature. My question is, how can I add a pop-up form to the login link that was added to the top navigation bar? Do I need to make the link a button or image before I can add a pop-up form to it?

    Thanks in advance!

    #140393

    Tbh I don’t know why the plugin author claims things like “My guess is the theme has completely FUBARed the permalinks data or interface.”. Our theme does not rewrite the permalinks in general but only the permalink of the custom post type “portfolio” (registered in wp-contentthemesenfoldincludesadminregister-portfolio.php) uses a rewrite rule and the WPML rewrite rule the author mentions in his mail (probably he refers to the code in wp-contentthemesenfoldconfig-wpmlconfig.php) does not affect other post types too. Kriesi just rewrites the slugs for all post types which are stored in the $avia_config array and that’s actually just the portfolio post type (compare following line in wp-contentthemesenfoldincludesadminregister-portfolio.php)

    $avia_config['custom_post']['portfolio']['args'] = $args;

    Also the url rewrite just affects the portfolio post type – compare the code:

    function avia_wpml_url_filter($lang)
    {
    $post_type = get_post_type();

    if("portfolio" == $post_type)
    {
    $slug = avia_wpml_get_options('portfolio-slug');

    $current = isset($slug[ICL_LANGUAGE_CODE]) ? $slug[ICL_LANGUAGE_CODE] : "";
    foreach ($lang as $key => $options)
    {
    if(isset($options['url']) && $current != "" && $current != $slug[$key] && "" != $slug[$key])
    {
    $lang[$key]['url'] = str_replace("/".$current."/", "/".$slug[$key]."/", $lang[$key]['url']);
    }
    }
    }
    return $lang;
    }

    If you still think our config.php breaks the permalink open up functions.php and replace

    require_once( 'config-wpml/config.php' );

    with

    //require_once( 'config-wpml/config.php' );

    Afterwards WP will complete ignore all WPML related rewrite rules which are part of the theme code and no other rewrite rules will be applied (by the theme) to the permalinks.

    That said I didn’t notice any permalink issues with other plugins (WooCommerce & WPML or bbpress & WPML) and I agree with the author above – it’s probably a conflict in your configuration (plugin/plugin conflict or plugin/theme conflict). You can try to deactivate all plugins and then activate them one by one to find the conflicting plugin(s).

    #139800

    Hi Ismael,

    When I did the upgrade, I used FTP to upgrade. I noticed that only the WooCommerce shop pages have the woocommerce style. Rest of the sites are okay. If that’s the case, do you still think overriding the theme files via FTP would correct the woocommerce style issue?

    Thanks,

    #139799

    Hi,

    Please download the latest version of Enfold, 2.1. Override the theme files via FTP. I think the process of updating the theme has nothing to do with the css issue. Don’t forget to create a backup of the modified files.

    Regards,

    Ismael

    #29344
    alittlewing
    Participant

    Hi, I’m working on a site using Enfold template and been able to add some nice customization to the Main Content and Alternate Content global styling options. I have a sidebar layout on a handful of pages including the homepage, and would like the sidebar to standout more from the light background texture I added to the Main Content.

    Through another thread I was able to find a css solution to add a background color to the sidebar, but it doesn’t affect the margins and wrapper. Ideally I could apply the Alternate Content style to the whole right sidebar container or at least make everything to the right of the border the same color.

    The working site for reference is tedxbeacon.wpengine.com.

    Appreciate the help!

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    Hey,

    Let us know if it really is the issue. :)

    Cheers,

    Ismael

    #139635

    Hi,

    I’m not saying that you have to delete those every time you create a video page. I’m just saying you do it just for this particular page. I tested it on my end and the video shows fine.

    Please download Enfold 2.1.

    Regards,

    Ismael

    #140076

    Hi Ismael,

    I am running WP 3.6 and Enfold 2.1

    I deleted cache and history, tried to access my site in Chrome, Safari and FF, still cannot see the above, new files…

    Is there any way I can update the Avia Builder manually via FTP?.

    I reloaded the page several times but no change….saved the page several times and updated, no change.

    Thankyou

    Gary

    #140408

    Hi John,

    Open the functions-enfold.php file and search for this line (262):

    Replace it with this:

    'html' => "",

    Regards,

    Josue

    #116527

    In reply to: Enfold Showcase

    Hey,

    Nice work Paulo! Awesome designs. :)

    Regards,

    Ismael

    #29341
    jbiasucci
    Participant

    In the Enfold theme, the page title of individual pages that are shown in the “All Pages” list can controlled easily — just by changing the name of the page. Also, the title container itself for any of these listed pages can be easily suppressed just by choosing not to display the page header.

    However, a “page” is also generated automatically when someone clicks on an individual post on the blog page, and this page displays the title container and the title “blog”. Howwever, this page is not shown in the list of pages, and I can’t figure out either how to change the title from “blog” to something else, or to suppress the title container completely. Can you help me out?

    My site link, showing such a non-page page with the title “blog”, is: http://uufreethinker.com/2013/09/in-search-of-secular-spirituality-beyond-gazing-at-the-grand-canyon/

    Thanks for your help.

    John

    #29335
    JaredBurnett
    Participant

    on your page http://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/?skin=Splash%20Blue how did you get the “per month” font to be dark and italicized in the same cell as the price?

    Thanks, that seems to be it!

    Thank you!

    #140359

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    Hi,

    Are you talking about the menu on Appearance > Menus panel? Have you tried clicking the “Screen Options”, see if they are enabled?

    Regards,

    Ismael

    Hey,

    Please click “Screen Options”, see if all menu groups are enabled.

    Regards,

    Ismael

    #140358

    After I purged CDN and purged from Cache, it works now. I apologize for troubles

    Thank you,

    #140075

    Hi,

    Please try it on a different browser. Remove browser cache then reload the page a few times. Are you sure you got the latest version of Enfold?

    Regards,

    Ismael

    #140357

    Hey,

    Please remove browser cache then reload the page. If you have any cache plugin, flush the settings. Deactivate all plugins, see if the issue is fix.

    Regards,

    Ismael

    stephenkatz
    Participant

    I posted earlier about some administrators not being able to see all menu options, now have more information.

    1/

    When WordPress is installed in a subdirectory, menu construction options such as Portfolio Items or Portfolio Categories are visible to the first administrator assigned within Enfold. Subsequent administrators cannot see these options.

    2/

    When WordPress is installed at the root of a domain or subdomain, none of these menu editor options are available.

    All installations are WordPress 3.6 and the latest version of Enfold. No plug-ins. Installation is handled through Softaculous, and the theme is installed by uploading the .zip file from within WordPress.

    #140356

    I think you just need to have a little patience – I just tested and it works perfectly without problems – there is just a little ‘php’ / browser delay

    #121478

    @Devin, Thanks, but it’s not a temporary protection. My website is already live, using a different theme, and I’m setting up the ground for the switch to enfold. Only admins can see the page in Enfold, and I’ll be happy to give you the admin credentials so you can look into it.

    #29334
    jeffdorchester
    Participant

    Hello,

    I’m running into a plugin issue and want to see if you can help me figure out what’s going on. I’m using Store Locator Plus and first reached out to the developer for paid support before coming here. I’m getting 404 errors for all the custom pages the plugin is creating (/doctors/###).

    Is there a setting in the theme or a snippet of code I can add that will allow these custom pages to be created and displayed?

    Here’s what the plugin developer said after spending a lot of time working on this:

    Well… I am baffled now as well.

    Something in the unique mix of plugins & theme feaures is breaking permalinks. I am certain of that.

    I am also certain that the basic engine for Store Pages is working. Turn off permalinks and the problem goes away, but the URLs are ugly (and bad for SEO).

    There are a LOT of custom rules in this theme that change the permalinks table. The WPML “submodule”, for example, adds custom slugs and rules for custom post types based on the primary language. It has a special handler for portfolio page types as well.

    I am certain some combination of the plugins on the site are causing an issue. I’ve installed WordFence, SEO, and WPML on my dev box all with the PostName permalink structure with no problems.

    Something is mangling permalinks but I do not know what. I would like to figure it out today but I need to address some SLP4 beta issues this evening & have a full agenda tomorrow morning with family stuff going on.

    I will come back to this in the next 24h or so, but the first thing I think you should try is a restore of the backup to a clean staging/test site and start disabling the plugins until you are left with the base theme + Store Locator Plus / Store Pages + WPML. If that doesn’t work then building UP from a clean site, layering on the add-on packs starting with the base theme + SLP / Pages then the plugins in order of importance.

    It could very well be an old configuration/option setting in the wp_options table that was not cleared out when upgrading. Maybe the theme on the live site or a plugin on the live site is reading an old/obsolete value. I’ve had that issue with my own plugins in the past and had to write specific upgrade/activation rules to remove or update obsolete options.

    I’ll see what I can dig up, but thus far on my test system I’m coming up with nothing.

    I’d start disabling all the plugins on the live site until it is just the base theme + Store Pages, but I don’t want to make the site go into FUBAR mode without your consent.

    As a “sanity test”, and in hopes to possibly uncover the issue with the Enfold theme & the location pages I decided to leave Enfold installed and active as my default theme on my development system.

    Tonight, with a clean install of WP3.6 + Enfold + Store Locator Plus plugins, some really odd things started happening. Most notably the infamous “Sample Page” that comes with all WordPress installs as the first page pre-installed…. went missing. I simply cannot get to it with Permalinks enabled and Post Name as my custom post type.

    I do NOT have Store Pages enabled. Only Store Locator Plus 4 and Pro Pack 4. Neither one of those components go near the permalinks table.

    For some reason after using the site for just over an hour, my previously working sample page just started coming up with 404 errors.

    My dev system is on localhost, so it is not a DNS issue.

    My access is basically “wide open”, meaning I am running in privileged mode (though not root/super user) so it is not a security issue.

    My guess is the theme has completely FUBARed the permalinks data or interface.

    I have put in literally HUNDREDS of hours with SLP4 + Pro Pack 4 on the included WordPress 3.6 theme as well as a custom theme for a client (120+ hours), Genesis (90+ hours), and a few other themes and have never seen this type of result before.

    I recommend getting in touch with the theme author and asking if he has heard of this happening before. At first I was thinking “it must be something in Store Locator Plus or Store Pages”, but now that Sample Page with NO Store Locator Plus code has gone missing I’m fairly certain it is NOT something in the plugin.

    I’m even more convinced of it as it happened with SLP4 which cleans up some script loading that was putting SLP scripts on pages without the locator map. That does not happen in SLP4, and I verified that was the case on the sample page URL.

    I’ve even tried using another plugin that’s similar and I get the same issue.

    Please let me know if you need logins, URLs or anything at all to help you help me.

    I appreciate your support and understanding! Thanks in advance.

    #114841

    Ok, so I have used pretty much all the major wordpress themes and think Enfold has the potential to be one of the best if a little more attention is given to these areas in particular.

    FONT STYLING

    1. Please add a section to the Enfold theme where you can easily access and define font styles for ALL the major sections of the site, rather than relying on custom css. Virtually every other theme I use has a dedicated area for this which makes it really neat and tidy and far easier for everyone too. At the moment you have to literally hunt around each page and section of the theme to find individual styles for widget titles and headings before you can begin creating styles for them. Headings also seem far too fragmented at the moment too, meaning styling ALL the headings for an entire site can be problematic and require page specific (local) styles rather than global etc.

    BOG & SIDEBARS

    2. These elements spoil an otherwise fantastic theme and are by far the weakest elements for me right now. There just seems to be no real style to any of these areas and there aren’t any specific options for these in the theme settings either. I would really like to see more styling options made available for the blog, posts and sidebars in future releases including settings to customise titles, meta data, padding, column sizes, alignment etc.

    VIDEO EMBED OPTIONS

    3. Currently when you use the ‘Video’ media element you only get the option to insert a link to the video, rather than any embed code which allows more control of content size and appearance. The alternative is to paste embed code from either Vimeo or YouTube into a ‘Text Block’, but this doesn’t appear to be fully responsive. For example, when I embed a video this way and scale my page or view on a small resolution monitor, the video has scaled correctly and in proportion, but within what looks like a containing black div which doesn’t scale correctly with it. This results in a really tall black area above and below the video content and looks terrible.

    4. ICON BOX:

    4.1 – Add the ability to edit / replace the current icon (including coloured bg area around it too)

    4.2. – Add the ability to set a bg colour for the entire icon box from within the advanced editor

    4.3. – Add the ability to select a heading of your choice for the title area – Currently this is set as H3, which isn’t ideal.

    5. ICON LIST

    5.1 – Option to edit multiple list items in same pop up window – PLEASE, PLEASE consider adding this option as it would save so much time. Manually clicking a list item, entering a title and content for dozens of items can be so time consuming and being able to do it all from one single window would be fantastic.

    5.2 – Option for editing / replacing current icon

    5.3 – Option to export / import content for icon lists – If you have to recreate them for any reason and have created many items it can be very time consuming to do this from scratch all over again.

    TABLES

    Please add more style options and most importantly make them responsive as they currently just aren’t usable right now. One of the other themes I use has responsive tables which wrap columns correctly when scaled, am sure it’s Avada.

    That’s the lot for now. Thanks and keep up the good work.

    #116526

    In reply to: Enfold Showcase

    I’ve been using wordpress themes long time ago, but this theme it’s really, really good…

    Here my own website:

    http://www.psoares.net/v1

    Sorry about work area (portfolio) only having few works, but i’m working on it – to many work doesn’t let me finish my own website :D

    Cheers,

    Paulo Soares

    #116525

    In reply to: Enfold Showcase

    New UK school site built with Enfold. Integrated with Events Calendar, S2Member, Gravity Forms and a few other plugins.

    Hope you like ?

    #29332
    montanayank
    Participant

    My Enfold is not allowing me to upload .epubs files for selling via Woo Commerce. Suggestions?

Viewing 30 results - 239,521 through 239,550 (of 244,405 total)