Viewing 30 results - 23,431 through 23,460 (of 23,472 total)
  • Author
    Search Results
  • #23049
    doafilms
    Participant

    Hi Kriesi,

    I’ve post things in the past on your message boards and you have always been great getting back to me. Hopefully these problems are easy fixes.

    http:www.kelly-sells.com

    First thing is I am having limited compatibility with IE 8 and 9. IE10 works flawlessly, but 8/9 don’t do the site justice. It’s not the end of the world, and if need be I will install a javascript browser detector and switch to a very simple version of the site fo IE users, but just curious on your thoughts and any solutions.

    Next is the big issue. I have a real estate plugin installed (dsIDXpress by Diverse Solutions) on the site that uses a IDX system based on the US multiple listing service (MLS) that allows visitors to search for properties in the real estate market. Because of our location, there is only one pro service that offers a plugin for our area. On top of that its not cheap ($100 setup and $30/month). So basically we HAVE to use this plugin. However we are running into some bugs and I think its coming from the themes end. I had already contacted the plugin company and they explained that it was an issue with the theme. They may be just ignoring it, but I figured I would ask.

    The major is issue is the shortcode buttons in the TinyMCE do not work properly. You can see here: http://imageshack.us/a/img96/7534/screenshot20130506at342.png

    Any time I click any of the three buttons installed into the TinyMCE, a popup windows displays and a few moments later the error I linked to shows up. It is referencing something about the avia updater, which I believe has something to do with the advanced layout builder. Is there ANYTHING I can do to fix this? It’s crippling my usability of this plugin.

    Next thing is kind of two things in one. It again has to do with this plugin. One of the features it has is a property widget that can display properties within certain parameters either as a list or on a map. What I have done is created a custom widget area and added that widget on the homepage to display properties on a google map. The odd thing is it worked for about a day or so, and now its just displaying it as a list. I have gone back and looked at the widget settings and it still set to display as a map. On top of that, it started showing as a list instead of a map for me about a day and a half before it did some of my clients, so its behaving oddly. My next option would be to try the exact same setup using the shortcodes, but as described above, they will not load.

    Lastly that same widget I am placing into a custom widget area onto the page seems to be injecting code and a logo into the footer. Normally on a listing page that same text and logo will display just below the listing, but I think because I am placing a widget into the page and not on a sidebar, its messing up and throwing that data into the footer. It just looks really ugly and wanted to see if there is anything I could do about it. Honestly if we can get the shortcode buttons to work, all these problems may get resolved, but since I haven’t been able to use them I don’t know for sure.

    SORRY about the super long post, but its very important and urgent. If you need access to my wordpress backend or my ftp please let me know. ANY HELP you can provide is hugely appreciated.

    #116576

    Hi,

    What you are showing on the site can be changed in file /includes/loop-index.php , with the blog image on line 101 the way you have the blog setup, remember there are multiple settings. However all are controlled on this page. But yours is line 101 for the image.

    I suggest you get NotePad++ and download the theme folder somewhere on your desktop home computer, then use notepad++ to search through all files in the entire folder for classes you see when you view source around the parts you want to edit and then you will see how the structure is and which pages it is located on. https://kriesi.at/support/topic/changing-to-antoher-language#post-102486

    Thanks,

    Nick

    jwferne
    Participant

    I’m having trouble sorting out what the top bar is called… where you would put a phone number etc. I want to change the color of that bar only. I found the code which colors it, but I was hoping I could remove everthing but the specific bar. Which one is that called?

    .header_color table, .header_color .widget_nav_menu ul:first-child > .current-menu-item, .header_color .widget_nav_menu ul:first-child > .current_page_item, .header_color .widget_nav_menu ul:first-child > .current-menu-ancestor, .header_color .pagination .current, .header_color .pagination a, .header_color.iconbox_top .iconbox_content, .header_color .av_promobox, .header_color .toggle_content, .header_color .toggler:hover, .header_color .related_posts_default_image, .header_color .search-result-counter, .header_color .container_wrap_meta, .header_color .avia-content-slider .slide-image, .header_color .avia-slider-testimonials .avia-testimonial-content, .header_color .avia-testimonial-arrow-wrap .avia-arrow, .header_color .news-thumb {
    background: none repeat scroll 0 0 #D9FFD9;
    }

    Thanks,

    – John

    p.s. I used firebug to grab that. If there’s a better way to see the structure and know what it’s called, I would be grateful to find out. Trying to learn how to do all this!

    #117862

    Please help!!

    I may have explained it unclear. I basically need to duplicate “Portfolio items” in the wp menu a few times. Either I can create custom post types and add the necessary code(s) to make them work and look like the portfolio, or I duplicate the necessary portfolio files/codes and rename them into “Customers”, “Partners” and “Products”.

    Important is that I also have to advanced layout builder.

    This is extremely important in my case, so please give me your feedback.

    An example of what I have already added as PHP, currently still as regular post types:

    // Add new post type for Customers
    add_action ('init', 'customers_init');
    function customers_init()
    {
    $customer_labels = array(
    'name' => _x('Customers', 'post type general name'),
    'singular_name' => _x('Customer', 'post type singular name'),
    'all_items' => __('All customers'),
    'add_new' => _x('Add customer', 'customers'),
    'add_new_item' => __('Add Customer'),
    'edit_item' => __('Edit Customer'),
    'new_item' => __('New Customer'),
    'view_item' => __('View Customer'),
    'search_items' => __('Search Customer'),
    'not_found' => __('No customers found'),
    'not_found_in_trash' => __('No customers found in Trash'),
    'parent_item_colon' => ''
    );

    $args = array(
    'labels' => $customer_labels,
    'public' => true,
    'publicly_queryable' => true,
    'show_ui' => true,
    'query_var' => true,
    'rewrite' => true,
    'capability_type' => 'post',
    'hierarchical' => false,
    'menu_position' => 5,
    'supports' => array('title','thumbnail','editor'),
    'has_archive' => 'customers'
    );
    register_post_type('customers',$args);
    }

    // Add custom taxonomies
    add_action( 'init', 'create_taxonomies', 0);

    function create_taxonomies()
    {
    // Customer type
    $country_labels = array(
    'name' => _x('Countries', 'taxonomy general name'),
    'singular_name' => _x('Country', 'taxonomy singular name'),
    'search_items' => __('Search countries'),
    'all_items' => _x('All countries'),
    'most_used_items' => null,
    'parent_item' => null,
    'parent_item_colon' => null,
    'edit_item' => __('Edit Country'),
    'update_items' => __('Update Country'),
    'add_new_item' => __('Add country'),
    'new_item_name' => __('New Country'),
    'menu_name' => __('Countries')
    );
    register_taxonomy('customer-country', 'customers', array(
    'hierarchical' => true,
    'labels' => $country_labels,
    'show_ui' => true,
    'query_var' => true,
    'rewrite' => array('slug' => 'customer-country' )
    ));
    }

    #22927
    DavyE
    Participant

    Hi, I’m still new to WordPress and your theme, but I’ve been searching for a way to get structure in both the site and the cms. The following example is exactly what I intend to achieve, but instead of based on “posts” I’d need it to be based on the “portfolio” of the Enfold theme.

    You can see an example here (go straight to 2:10):

    http://www.youtube.com/watch?v=P4roKGP2WBk

    Instead of “Recipes”, “Photos” and “Videos” I would set up “Customers”, “Partners” and “Products”. Because “Posts” are too limited in content layouting (Advanced layout builder) I would need these to be exactly like the Portfolio category in your theme, even the way they are listed on the site (isotope) needs to look exactly like the portfolio.

    So my question is: Can I ‘duplicate’ the Portfolio category the same way that video showed by duplicating the posts category? I really hope so! (I would do all the coding myself, based on the Lynda.com extended tutorial and I have a PHP developer to assist me if necessary)

    #117473

    Hi!

    The blog page is a special template. Go to Enfold > Sidebar and search for the “Sidebar on Blog Page” option. Select “No Sidebar”.

    Best regards,

    Peter

    #117381

    In reply to: Blog option

    1) Maybe you need to activate the option on the post editor screen. Click on “Screen options” in the right corner and check the excerpt checkbox: http://www.clipular.com/c?5393178=DWPIZfYn3Pt6vQ_8EL0lN6Pc9Js&f=.png

    2) The reason is that the portfolio thumbnail size is used which does not crop the image. We’ll include an option to select a different thumbnail size in the next version. For now you can change the thumbnail dimensions in functions.php – search for:

    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)

    and set the height to a lower value. Afterwards regenerate the thumbnails http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Another option would be to upload bigger thumbnails with at least 495x400px.

    3) Probably a bug but I fixed it. Try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php

    and replace:

    $excerpt .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';

    with

    $excerpt .= '<div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';

    #117438

    it’s not working for me either ;-(

    hope to get response here. Searching the forums didn’t work.

    #117234

    Great, thx. The Login / Logout is now 1st point in the navigation. Is there a way to put it at the end, just before the search button?

    #117018

    Thanks. This is exactly what I did, search and replace in the sql dump.

    I’m gonna try out the migrate plugin. Thanks for the tip.

    #22627

    Topic: Enfold Showcase

    in forum Enfold
    Dude
    Participant

    Hi!

    I think this thread can be very useful especially if you search for inspiration :)
    Feel free to link to your website and show us what you have done with Enfold. Once we got enough samples we will probably create a showcase section on the theme demo itself :)

    Regards,
    Peter

    • This topic was modified 10 years, 7 months ago by Kriesi.
    #116883

    Thank you, Devin for your reply.

    I looked through the resource you provided, but I can’t make too much sense of it. I’m not a coder, so I’ve been searching all day for laymen explanations on how to exactly enclose in a “no-conflict wrapper” and looking for other solutions.

    You mentioned that there are other solutions to this. I know how to access my php files and eit them. Is there something simple that I can do or do I need to hire a javascript person?

    Angelo

    #117017

    Hey!

    This sometimes happens when domain name of the old domain and the new one have a different character length. Sounds a little weird I know:

    The option page data is serialized by wordpress and then saved to the database. A serialized string allows you to save arrays and objects of data. the problem is: if you change the serialized string with a search and replace and it doesnt have the same length after the replacement than before it becomes corrupted and will no longer work.

    Most often a user sets

    – a custom logo
    – a favicon
    – adds some background images in the style editor

    all of those are saved with domain name. If you create a sql dump and then search and replace the domain names the options will no longer be valid, thus ignored. You can either just remove the option settings that contain the domain name, then do the search/replace, then import it and then upload your logo/favicon/custom images or you try to get one of the plugins that correctly convert those serialized strings for you like this one: WP MIGRATE DB

    Just tested it on my colleagues’ laptop and it seems a little better in normal IE8 view, but pretty much the same in Comp View. The search icon is OK on that laptop, while the slider icons are just plain squares, like mine.

    DavyE
    Participant

    Hi,

    I’ve just tested this template (even your very own demo) in IE8 with and without Compatibility View on and it’s totally messed up. Every last column in Compatibility View is sent to a new row, all icons like the search icon in the header or icons in buttons are unrecognized and transformed into a pause-like symbol.

    Positioning of many items are totally out of place. Yet when I check again on the compatibility listed for this template on themeforest.net it says it is compatible with IE8. How so? As in, the information is there, that’s it?

    Operating System I’ve tested IE8 on is Windows 7.

    #116203

    Works like a charm, thanks a lot!

    #116223

    Sorry Ismael, am I missing something? You’ve just given me the identical code that already exists on the error404.php and that I referenced in my 2nd post!!

    That code displays the combo widget in the main content area of the 404 page. I want to add a custom menu or pages widget above this (or actually even above the search bar that appears above the combo widget)

    Thanks,

    Matt

    #116202

    You can use following code to sort it alphabetical – insert it at the bottom of functions.php:

    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'title';
    $query['order'] = 'ASC';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);

    A search field just for the portfolio entries is not possible atm.

    #116250

    1) Yes, just add a blog element to your home page (you can select your home page on the theme options page):

    2) Tbh I’d really avoid to put the entire content of a post (including comment form, etc.) on the front/home page. It will very likely harm your search ranking/seo and it is very uncommon (thus will probably irritate users). If you still want to hire one you can try: https://codeable.io/ or http://www.freelancer.com/

    #116201

    Hi DavyE,

    Not that I know of but I’ve tagged the head of support on the topic to see if he has any insight.

    Regards,

    Devin

    #116220

    Hi Dude,

    I already have the pages widget added to the sidebar, but I wanted to add it in to the main content area of the error404.php page, not a sidebar, just below the search box that appears and above where the avia combo widget appears. I have looked at the error404.php page and want the widget to appear above or instead of the code below:

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

    <?php
    the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'404',
    'before_widget' => '<div class="widget avia_combo_widget">',
    'after_widget' => '</div>',
    'before_title' => '<h3 class="widgettitle">',
    'after_title' => '</h3>'
    ));
    ?>

    I tried to change the widget name in the code above to the pages_widget, but it didn’t work!

    arielfreaner
    Participant

    Hello there. On my enfold theme the header Social Icon for YouTube and some others do not appear or show on the drop down menu. So for now I am using the VIMEO Social Icon header so my client does not get mad at me.

    The layout.css stylesheet shows the youtube is included (see extract below), however, It does not show up on the Social Icon header drop down menu.

    #top .social_bookmarks li a:hover{ text-decoration: none; }

    #top .social_bookmarks_youtube:hover a{color:#fff; background-color:#a72b1d; }

    #top .social_bookmarks_rss:hover a{color:#fff; background-color:#ffa133; }

    #top .social_bookmarks_facebook:hover a{color:#fff; background-color:#37589b; }

    #top .social_bookmarks_twitter:hover a{color:#fff; background-color:#46d4fe; }

    #top .social_bookmarks_mail:hover a{color:#fff; background-color:#9fae37; }

    #top .social_bookmarks_dribbble:hover a{color:#fff; background-color:#e44885; }

    #top .social_bookmarks_linkedin:hover a{color:#fff; background-color:#419cca; }

    #top .social_bookmarks_search:hover a{color:#fff; background-color:#222222; }

    #top .social_bookmarks_gplus:hover a{color:#fff; background-color:#de5a49; }

    #top .social_bookmarks_behance:hover a{color:#fff; background-color:#008cfa; }

    #top .social_bookmarks_flickr:hover a{color:#fff; background-color:#ff0086; }

    #top .social_bookmarks_forrst:hover a{color:#fff; background-color:#234317; }

    #top .social_bookmarks_myspace:hover a{color:#fff; background-color:#000000; }

    #top .social_bookmarks_tumblr:hover a{color:#fff; background-color:#345574; }

    #top .social_bookmarks_vimeo:hover a{color:#fff; background-color:#31baff; }

    #top .social_bookmarks_pinterest:hover a{color:#fff; background-color:#cb2027; }

    #top .social_bookmarks_skype:hover a{color:#fff; background-color:#12a5f4; }

    I know some CSS and some HTML but that’s it. The website is:

    http://www.jorgeastiazaran.com/Inicio/

    Any help here? I really need to fix this issue ASAP!

    Sincerely,

    Ariel Freaner

    #22567
    DavyE
    Participant

    At the moment I see the order of the portfolio is based on the date it was added in the CMS. Yet in my case it should just be alphabetical, any way to change that? Doesn’t matter if it should be coded in php or whatever. Just want to avoid looking for hours when it’s somewhere obvious.

    Also, can there be a search field for the portfolio itself? They can use the general search field, but that basically shows ALL info in the site, including news items etc.

    Thanks in advance!

    #116122

    Hi master-t,

    Please don’t make duplicate topics for the same question/issue. It makes it much more difficult to answer and clogs up search results when others are looking for answers.

    For the labels, no it is not easily possible but you could suggest the option as a feature request in the feature request topic here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Devin

    #116095

    Hi!

    Or open up functions-enfold.php and delete following line:

    add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );

    Best regards,

    Peter

    #116058

    Hey mohitso,

    I just addressed your other topic on the same question here: https://kriesi.at/support/topic/my-quick-css-how-do-i-make-menu-font-in-header-larger

    Please only make a single topic for an individual question as it makes it easier to answer and for others to search for answers.

    Regards,

    Devin

    #116094

    ADMIN PANEL > Enfold Theme Options > Styling > Quick CSS (paste code) :

    #top .menu-item-search-dropdown > a, #searchform #searchsubmit, .ajax_search_image, .iconfont{

    display: none;

    }

    #116093

    .. is there a way to edit the CSS perhaps?

    #22528
    franktw
    Participant

    How does one remove the Search function from the header?

    Thanks!

    #22524
    allegrabillings
    Participant

    Hey guys, I searched this but couldn’t fint a post about this unless I just missed it. I can’t imagine this hasn’t been noticed before. But when you open a lightbox on a single image only the close button in the bottom right corner is cut off on the bottom. It looks like it is overlayed by the border stroke.

    If it is a multiple image lightbox this is a non issue as the play navigation on the bottom left is larger and makes the window bigger.

    Any way to address this. it looks a bit tacky.

Viewing 30 results - 23,431 through 23,460 (of 23,472 total)