Forum Replies Created

Viewing 30 posts - 8,791 through 8,820 (of 9,352 total)
  • Author
    Posts
  • in reply to: POST IN SEARCH VIEW #121908

    Hey!

    Maybe I’m blind but I’m not aware of a “Category search widget” which is bundled with WordPress. Can you make a screenshot please?

    Regards,

    Peter

    It’s not impossible to duplicate this section but it requires some work to copy/duplicate the portfolio grid template for other post types and it’s time intensive – especially if you want to do it right. It’s something which is beyond the scope of our support forum – I’m sorry.

    If you really need this feature I’d recommend to hire a freelancer for this task. If you don’t know a good coder I can help you – just use the contact form http://inoplugs.com/contact/ and I’ll make you a quote.

    in reply to: CHANGE POST SEARCH TO PORTFOLIO SEARCH #122203

    Hi!

    Probably not because the “catagory search widget” just supports categories and not terms/taxonomies. I’d recommend to contact the plugin author and ask him add support for custom taxonomies/terms.

    Regards,

    Peter

    in reply to: How to remove element in Avia layout builder? #122155

    Hey!

    Yes, just delete following files: wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesnotification.php , wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestabs.php and wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestoggles.php

    Best regards,

    Peter

    in reply to: Google map styling #122166

    Tbh I’m not familiar with the google maps api and I can’t assist you with detailed instructions. But probably you can add it to the map print code in wp-contentthemesenfoldframeworkphpclass-framework-widgets.php – open up the file and search for

    function avia_printmap($lat, $lng, $zoom, $type, $content, $directionsto) {

    below this line you’ll find the google maps javascript code and there you should be able to insert your custom styling code, etc.

    This is not possible because WP doesn’t know the “parent/child” relationship between portfolio single entries and portfolio overview pages. I”ll tag this thread for Kriesi – maybe he has an idea how to apply the right menu item classes.

    I’d recommend to use the “current-menu-parent” class instead of “current_page_parent” because then the “blog” page will not be marked as active if you’re on the portfolio page even if it’s a child page of the blog page.

    in reply to: POST IN SEARCH VIEW #121906

    Hey!

    Which “WP catagory search widget” do you mean? Is this a third party plugin/extension?

    Regards,

    Peter

    in reply to: reducing http requests #121890

    Hi!

    Maybe you forgot to hit the “flush the cache” button after you saved the new font settings?

    Regards,

    Peter

    in reply to: Custom Post Types and Page Templates #122091

    Hey!

    @finchkelsey – did the posts sanderoinks posted above answer your question?

    Best regards,

    Peter

    in reply to: Menu doesn't show up on Mobile #119999

    Hey!

    Did you try the new “Slide Out” menu? Go to Enfold > Header and select the “Slide Out menu” from the “Responsive Header Main Menu” dropdown.

    Best regards,

    Peter

    in reply to: Tables in Text Block #122132

    The valign top attribute is not supported in html5 anymore but you must use css3 code. Try:

     
    <table align="top">
    <tbody>
    <tr>
    <td style="vertical-align: top;">
    <ul>
    <li>Logo Design & Branding</li>
    <li>Business Stationery</li>
    <li>Corporate Brochures</li>
    <li>Catalogues & Newsletters</li>
    <li>Direct Mail, Leaflets & Flyers</li>
    <li>Exhibition Graphics & Systems Press Advertising</li>
    <li>Vehicle Livery & Signage</li>
    <li>Promotional Merchandise</li>
    <li>Packaging & POS</li>
    </ul>
    </td>
    <td><img alt="" src="http://symbioticmarketing.co.uk/wp-content/uploads/2013/04/google_print.jpg" /></td>
    </tr>
    </tbody>
    </table>

    in reply to: Cheatin’ uh? #122082

    Hey!

    Please create me a wordpress admin account and send me the login data and more details about the issue to: (Email address hidden if logged out) – I’ll look into it.

    Best regards,

    Peter

    in reply to: Display all menu items #122277

    Hi!

    No, unfortunately not. You could use a mega menu but it will only display if you hover over the parent menu item.

    Regards,

    Peter

    in reply to: Unable to upload the theme. #122266

    Please use ftp to install the theme. Connect Filezilla (or any other ftp client) to your server and navigate to wp-content/themes/. Then delete the existing enfold folder (and if necessary a folder called _MACOSX) and upload the uncompressed Enfold theme folder (you need to extract it from the themeforest zip file) into the wp-content/themes/ folder.

    in reply to: Grid blog post excerpt length #121048

    Hi!

    I tagged this thread for Kriesi.

    Regards,

    Peter

    in reply to: Three questions – one post #121823

    1) You can reomve the border with following code – insert it into the quick css field

    .js_active .active_tab_content {
    border: none !important;
    }

    2) If you want to set a grid for all taxonomy archive pages I’d suggest to modify archive.php a bit – open up the file and replace:

    if(avia_get_option('blog_style','multi-big') == 'blog-grid')

    with

    if( (avia_get_option('blog_style','multi-big') == 'blog-grid') || is_tax() )

    3) I’m not sure if I understand the question but yes – you can use an “Advanced Layout” for the front page. Then add the “Tab” element/shortcode to it and insert your custom text into the tabs.

    4) Excerpt/Excerpt Read More seem buggy – we’re not always using the_excerpt() function but we also use the_content(). In this case you can’t use the excerpt field but you need to use the read more quicktag: http://codex.wordpress.org/Customizing_the_Read_More , http://en.support.wordpress.com/splitting-content/more-tag/ to split your content into an excerpt and full version.

    in reply to: Enfold Combo Widget #121949

    This will be fixed in the next version. Open up wp-contentthemesenfoldframeworkphpclass-framework-widgets.php and replace:

    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image = get_the_post_thumbnail( get_the_ID(), $image_size );
    }

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_get_post_list' );

    with

    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image_size = isset($avia_config['widget_image_size']) ? $avia_config['widget_image_size'] : 'widget';
    $image = get_the_post_thumbnail( get_the_ID(), $image_size );
    }

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_get_post_list' );

    It requires some work to copy/duplicate the portfolio grid template for other post types. Depending on your coding skills I’d recommend to hire a freelancer for this task. If you just want to add a hover effect to image links add the “lightbox” class to the link. You can use it like:

    <a href="http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-slider-3/" class="lightbox">
    <img width="260" height="185" src="http://kriesi.at/themes/enfold/files/2013/04/dash-iphone2-260x185.jpg">
    </a>

    in reply to: PORTFOLIO OVERLAY #121940

    Hey!

    Yes, insert following code into the quick css field

    .image-overlay.overlay-type-extern .image-overlay-inside::before {
    content: "Contact";
    }

    .image-overlay .image-overlay-inside::before {
    font-family: Arial, Helvetica;
    }

    Best regards,

    Peter

    in reply to: Adjusting sub-menu in header #121644

    1) I’m not sure what you mean with “left align”. The standard dropdown is already left aligned. The mega menu will expand based on the number of columns and you can’t change the alignment easily.

    2) You can change the height of the link – insert following code into the quick css field and adjust the height value:

    #top .main_menu .menu li>a {
    height: 62px !important;
    }

    3) You can hide this line with

    li:hover .avia-menu-fx, .current-menu-item>a>.avia-menu-fx, li:hover .current_page_item>a>.avia-menu-fx {
    display: none;
    }

    in reply to: position of colorbar #121630

    Hey!

    No, it’s not possible to add any elements before the header or after the footer/socket area.

    Regards,

    Peter

    in reply to: Layerslider in php file #121788

    We just use the advanced layout builder on the demo website. You can use the code from here: https://gist.github.com/InoPlugs/5d0d1477a0252aca1081 to reproduce the front page layout – just insert it into the “standard editor” and save the page. Then switch to the “advanced editor” to edit the elements.

    in reply to: Please contribute and translate Enfold #114935

    Hi!

    Yes, thanks for the hint. I re-uploaded the file.

    Best regards,

    Peter

    in reply to: HELP EVRYTHING RESET ITSELF TO FACTORY DEFAULT!!! #122010

    In this case I’d recommend to restore the database. If you’ve a backup file (eg sql file) you can import it by using your db management tool (i.e. phpmyadmin, etc.). If you don’t have such a file try to contact your hoster and ask them if they can provide a backup.

    in reply to: Layerslider in php file #121786

    If you want to use php to call the slideshow (which imo doesn’t make much sense) you can try the do_shortcode function:

    echo do_shortcode('[av_layerslider id="3"]');

    Instead of 3 insert the id of your LayerSlider.

    in reply to: Undefined $product #122054

    Hey!

    Please post the code of your templates. You can use: https://gist.github.com/

    Regards,

    Peter

    in reply to: Hardcoded text :( #122016

    Hi!

    Yes, if you install the theme with the WordPress uploader you’ll also loose these files. That’s why I always recommend to use ftp to update the theme – with ftp you’ll only overwrite the “old” files with the “updated” files and if a new, updated file doesn’t exist the ftp client won’t touch the file on your server.

    Best regards,

    Peter

    in reply to: Hardcoded text :( #122014

    No, the complete path is wp-content/themes/enfold/lang – however Codestyling will just list relative paths – thus you won’t see wp-content/themes/enfold/lang but enfold/lang because it strips the wp-content/theme/ directory from the url.

    There’s no documentation for WPML yet but afaik you don’t need a special setup. The only difference is that Enfold will create an option set for each language – thus you need to configure the theme options (Enfold menu item on the admin screen) for each language.

    in reply to: Change Styles Pull Out Menu #122067

    1) You need to update your theme to version 1.3. I’d recommend to use the latest version (1.5 or 1.5.1).

    2) Go to Enfold > Header and search for the “Responsive Header Main Menu” option. Select “Display as Slide Out” from the dropdown.

    Can you post a link to your website please? I’d also recommend to re-install the theme – maybe some files are missing (eg the wp-contentthemesenfoldconfig-woocommerce folder, etc) and that’s why WooCommerce doesn’t work properly with Enfold. Also make sure that you’re using the latest version of WooCommerce and Enfold (version 1.5 or 1.5.1).

Viewing 30 posts - 8,791 through 8,820 (of 9,352 total)