Forum Replies Created
-
AuthorPosts
-
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
May 31, 2013 at 9:09 am in reply to: Custom post type Portfolio cloned, items don't show up on page #121873It’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.
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
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
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.
May 31, 2013 at 8:40 am in reply to: Portfolio items create blog parent as active ancestor/parent #122167This 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.
Hey!
Which “WP catagory search widget” do you mean? Is this a third party plugin/extension?
Regards,
Peter
Hi!
Maybe you forgot to hit the “flush the cache” button after you saved the new font settings?
Regards,
Peter
Hey!
@finchkelsey – did the posts sanderoinks posted above answer your question?
Best regards,
Peter
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
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>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
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
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.
Hi!
I tagged this thread for Kriesi.
Regards,
Peter
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.
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' );May 31, 2013 at 7:27 am in reply to: Create identical portfolio isotope function for custom post type galleries #121634It 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>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
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;
}Hey!
No, it’s not possible to add any elements before the header or after the footer/socket area.
Regards,
Peter
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.
Hi!
Yes, thanks for the hint. I re-uploaded the file.
Best regards,
Peter
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.
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.
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
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.
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.
May 30, 2013 at 8:14 am in reply to: Where to modify the look of WooCommerce shop pages in Enfold #121992Can 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).
-
AuthorPosts