Forum Replies Created
-
AuthorPosts
-
Hi!
Glad it works for you logan2d :)
Regards,
Peter
Hi!
Please post an url to the website when you’re ready. You can use http://goo.gl/ if you don’t want to post the url directly.
Best regards,
Peter
You can use a media query to hide the button Eg use:
@media only screen and (min-width: 1000px) and (max-width: 1002px) {
#advanced_menu_toggle{display: none !important;}
}to hide the menu button between 1000px and 1002px. You can insert different dimensions or create severalmedia queries for different resolutions like:
@media only screen and (min-width: 1000px) and (max-width: 1002px) {
#advanced_menu_toggle{display: none !important;}
}
@media only screen and (min-width: 980px) and (max-width: 982px) {
#advanced_menu_toggle{display: none !important;}
}However personally I could not reproduce the issue on your website – it switches the menu when I resize the screen to 1028px – then it hides the button and shows the menu links.
June 13, 2013 at 5:49 am in reply to: Slider not responsive? Appears with huge gap beneath on smartphones #124309It seems like the theme doesn’t calculate the height of the surrounding container properly when the user re-sizes the screen. I’ll mark this thread for Kriesi.
You can try a temporary fix though – insert following code into the quick css field
.avia-layerslider {
height: auto !important;
}Hi,
Open up enfold/js/shortcode.js and search for following code around line 205:
//trigger displaying of thumbnails
gallery.on('avia_start_animation', function()
{
images.each(function(i)
{
var image = $(this);
setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
});
});
change it to:
//trigger displaying of thumbnails
gallery.on('avia_start_animation', function()
{
images.each(function(i)
{
var image = $(this);
setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
});
}).trigger('avia_start_animation');
and the gallery thumbs should load immediately.
You can’t easily replace the sidebar with another sidebar but you can use widget logic: http://wordpress.org/plugins/widget-logic/ to show/hide certain widgets on the 404 page.
Add following condition to widgets which you want to show on 404 pages:
is_404()
and use following condition to hide them
!is_404()
June 13, 2013 at 5:31 am in reply to: Blog: Dropcap in blogpost not shoing up in general blog page #1242001) The dropcaps seem to work for me just fine: http://www.screenr.com/N32H
2) Open up wp-contentthemesenfoldindex.php and search for:
$title = __('Blog - Latest News', 'avia_framework'); //default blog title
$t_link = home_url('/');Replace it with
$title = __('Blog - Latest News', 'avia_framework'); //default blog title
$t_link = get_permalink();and replace “Blog – Latest News” with your custom text.
3) Open up wp-contentthemesenfoldarchive.php and replace:
global $avia_config, $more;
with
global $avia_config, $more;
$avia_config['blog_content'] = 'excerpt_read_more';I just checked the code and version 1.6 already contains the fix – Kriesi added it in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php with following code:
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'custom_excerpt_length' , 45) , ".", "…", true);
This code still checks if you set a manual excerpt (stored in $entry->post_excerpt) and if you set one it won’t use the truncated content – thus the excerpt lengths can vary.
Did you try to attach the post to another category or to delete and re-create the “aktuell” category? It seems to be a category specific issue because on other archive pages (eg http://www.test.eberlemichael.ch/wordpress/2013/06/ or http://www.test.eberlemichael.ch/wordpress/events/ ) the widget does not list random post ids…
June 12, 2013 at 1:55 pm in reply to: Remove "this is a Page excerpt. It will be displayed for search results" #124092It will show a truncated version of the content (see http://codex.wordpress.org/Function_Reference/get_the_excerpt ). WP allows you to change the number of words by using a filter: http://codex.wordpress.org/Plugin_API/Filter_Reference/excerpt_length
The problem is that your table just contains tr and th elements but th elements should be used for table headlines only. Please use different elements for your data – the structure should be (like demonstrated here: http://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/ ):
<tr class="avia-heading-row">
<th class="avia-desc-col">Geboren</th>
<td class="mytabledata">29.02.1973</td>
</tr>In your case the structure is
<tr class="avia-heading-row">
<th class="avia-desc-col">Geboren</th>
<th class="avia-desc-col">29.02.1973</th>
</tr>which will give you some weird styling because everything is coded as a headline. In addition search engines might have problems to index the data.
You can also add html code (and inline styling code) into the table fields – I made a short video to demonstrate the usage: http://www.screenr.com/Nk2H
Hey!
No, at the moment not. I’ll mark this thread for Kriesi (feature request). Some other users requested the 2/5,2/5 & 4/5 layout too and maybe we’ll add it in the future.
Regards,
Peter
Hi!
Click on “Member” underneath your username: https://kriesi.at/support/profile/abortolotti
Regards,
Peter
I asked Kriesi to look into it but I can’t promise that we’ll add such a feature. You can use the RSS feed icon to subscribe this thread. We don’t have a notification system (email, etc.) at the moment.
June 11, 2013 at 11:34 am in reply to: Arrows for portfolio images not working in internet explorer? #120209Hey!
I hope it worked out?
Best regards,
Peter
There’s no real demo shop. You can import the dummy data if you want some demo products but this can also overwrite existing entries. A good tutorial (regarding woocommerce setup, etc.) can be found here: http://wp.tutsplus.com/tutorials/plugins/getting-started-with-woocommerce-initial-setup/
Hey!
Can you post a link to your website please – we’ll check the source code.
Best regards,
Peter
Hi!
Please insert following code into the quick css field and change the color value if necessary:
.home .ajax_form fieldset{
color: #999;
}Regards,
Peter
Hey!
Great websites :)
Regards,
Peter
I can’t reproduce this issue on my PC – the margins seem to work just fine. However you can try to change the dropdown position with:
.main_menu .menu ul {
top: 100%;
}Increase or decrease the percentage value to move the dropdown up or down.
I tagged this thread for Kriesi. Afaik he didn’t modify the slider files extensively but he just made a few adjustments (we removed some skins which are not supported, deactivated the autoupdate notifier because the user can’t update the plugin without a valid plugin license and Kriesi added some import code in wp-contentthemesenfoldconfig-layersliderconfig.php). That’s it. I’ll ask him to report these bugs to the LayerSlider plugin author.
Enfold uses PrettyPhoto: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/ which also supports iframes or “hidden inline content”:
For an iframe use following html code:
<a href="http://www.twitter.com?iframe=true&width=400&height=200" rel="prettyPhoto">Twitter.com</a>
and replace Twitter.com with your url.
For inline content use:
<a href="#inline-1" rel="prettyPhoto" >More information</a>
<div id="inline-1" class="aviahide">
<p>This is inline content opened in prettyPhoto.</p>
</div>and insert following code into the quick css field to hide the content
.aviahide {
display: none;
}Hey!
Please try to increase the memory to 128M:
define('WP_MEMORY_LIMIT', '128M');
Best regards,
Peter
June 11, 2013 at 5:57 am in reply to: Is their a PDF or html documentation included in the theme? #124075Hey!
Make sure you downloaded the “Main File(s)” version of the theme from themeforest.net. It contains a folder (“documentation”) – inside this folder you’ll find an index.html which is the html documentation.
Best regards,
Peter
Hey!
Insert following code into the quick css field
h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {
font-weight: bold;
}Regards,
Peter
June 11, 2013 at 5:22 am in reply to: I really like the grid blog style, is there a easy way to allow it to load more? #123610Hi!
I just checked the options of the “Blog Element” and you can select up to 100 entries:
Regards,
Peter
Hey!
Please insert following code into the quick css field
div div.ppt {
display: none !important;
}I’m sorry for the late reply – I missed your post in the support queue.
Best regards,
Peter
June 10, 2013 at 1:56 pm in reply to: WPML text switcher in the fixed header (no flag, no dropdown) #121611Hey!
Please try to increase the allocated php memory. http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP – set it to 128M.
Best regards,
Peter
-
AuthorPosts