Forum Replies Created
-
AuthorPosts
-
I implemented “No title or caption”, “Permanent title”, “Permanent title and excerpt” and other options:
They’ll be available in the next update. I decided that the rollover effect doesn’t make much sense because it shifts the content (which looks weird and probably irritates the user) or (if we just “hide” it and fade it in) it creates a big white gap underneath the slider. Thus I think it’s better to complete remove the title/excerpt or to show it – imo more intuitive and user friendly.
I don’t want to say Formidable is better than Gravity Forms (imo this is not true) but it’s an alternative. Obviously it depends on your personal preference and on the budget because Formidable is cheaper (117$ one time payment vs 200$ and 100$ recurring payment). I tested both plugins and Gravity Forms is more popular (you can use it with WooCommerce and many other third party plugins) but the popularity doesn’t say anything about the quality of the plugins and imo both plugins are very similar and they can compete with each other.
We can’t fix this in the theme code but you need to tweak your server configuration. Change the allow_url_fopen setting to 1. You can set this value in the php.ini – if you don’t have access to the file contact your hoster and ask them to make this change for you.
Hi!
You need to use following shortcode:
[av_layerslider id="1"]
Best regards,
Peter
I tested your website with: http://www.whynopadlock.com/check.php and it seems like the livehelp url breaks the secure content status:
Hey!
Great website. Good job. :)
Regards,
Peter
Hallo,
öffne page.php und ersetze:
get_template_part( 'includes/loop', 'page' );
durch:
get_template_part( 'includes/loop', 'page' );
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');Ich weiß aber nicht, ob die Kommentare auch mit “Advanced Layouts” funktionieren.
Hey!
Can you post a link to the page with the vimeo video please?
Regards,
Peter
Hi!
Ok, I tested this now and it seems like the editor strips the apostrophe when you save the text. I’ll mark this for Kriesi as a bug.
Best regards,
Peter
Hi!
In header.php replace:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
with:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'h1');
Best regards,
Peter
Hey!
Glad you found a solution :)
Best regards,
Peter
1) To change the font size/line height of the main font insert following code into the quick css field:
body {
font: 13px/1.65em "HelveticaNeue", "Helvetica Neue",Helvetica,Arial,sans-serif;
}and replace 13px and 1.65em (line height) with your custom values.
2) Use following css code for the main menu font:
.main_menu ul:first-child>li>a {
font-size: 13px;
}Hey!
You need to add:
[nolink]
At the end of the input area for the copyright field in the footer section of the theme options.
Best regards,
Peter
Hey!
It seems like the server can’t start a session. Please contact your hoster and ask them to check the server configuration (session data folder is writable & exists, etc.).
Regards,
Peter
Add following code to the bottom of functions.php:
function custom_post_grid_query( $query, $params ) {
$query['orderby'] = 'date';
$query['order'] = 'DESC';
return $query;
}
add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);For an ascending order use ASC instead of DESC.. For a random order use:
function custom_post_grid_query( $query, $params ) {
$query['orderby'] = 'rand';
return $query;
}
add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);I’d say yes – all pages are required. However if you don’t want to use certain features (account page, etc.) you probably can delete some pages. You don’t need to add the pages to the menu though – you can also remove them (Appearance > Menus).
Hallo,
füge einfach die Klasse “lightbox” zum Bildlink hinzu. ZB:
<a class="lightbox" href="http://kriesi.at/themes/enfold/files/2013/04/4-small1.jpg"><img src="http://kriesi.at/themes/enfold/files/2013/04/4-small1.jpg" title="" alt=""></a>
öffnet das Bild http://kriesi.at/themes/enfold/files/2013/04/4-small1.jpg in der lightbox.
Enfold should be compatible with Gravity Forms (I tested it and I couldn’t find a conflict) and we even added some css code for better styling/css integration (based on the code I posted here: https://kriesi.at/support/topic/gravity-forms-styling-adjustments ).
I can’t say if Gravity Forms is worth the money – it definitely comes with more options, features, etc. and if you need an advanced contact form (which supports conditional logic, etc.) you should use it. However if you just need a simple form with a text message field, etc. it’s not required at all. Btw a good alternative is Formidable – I use it on my websites and it works with Enfold too.
Afaik this won’t work. You need to use the same language for wp and the theme. Use es_ES for WordPress and the theme or use ca for both: http://codex.wordpress.org/WordPress_in_Your_Language#Catalan_-_Catal.C3.A0_.28ca.29
1) The advanced editor is currently only available for portfolio items and pages. Blog Posts do not support the editor atm but you can use the shortcode generator to insert advanced elements (buttons, icon list, etc.)
2) Please try to flush the permalink rules. Go to Settings > Permalinks and hit the “save” button on the option page. Then reload the permalinks settings page. This will force WP to rewrite the htacess file and to rewrite the rules in the database. If it still doesn’t work try to add the rewrite rules to the htaccess file manually (set the permission to 0444 and WP will output the rewrite rules on the permalinks settings page because it can’t modify the htaccess file).
Hi!
Insert following code into the quick css field
.fixed_header #main {
padding-top: 151px;
}Best regards,
Peter
Open up page.php and replace:
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
with
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title('title' => '');
Hey!
Yes, exactly – just take the code I posted here: https://kriesi.at/support/topic/buttion-problem-in-ie8#post-109162 and insert it into the quick css field.
Best regards,
Peter
The theme just loads one or two google font families (depends on your selection on the “Styling” option page). In your case you can only use the “Open Sans” font family (and all “websave” fonts like Arial, etc.). If you want to use other fonts please install the google font WP plugin you mentioned in your previous posts, select the fonts you want to use for the slider and then insert the font family name into the Font option field.
Hi!
Open up functions.php and at the very end insert:
remove_action('wp_head','avia_debugging_info',1000);
Best regards,
Peter
The only theme related css styling which I could find is the font family of the h2 headline. You can try to change it for the slider headline:
Eg use a websave font like Arial.
Ok, now a can reproduce it :)
I’m not sure what’s the best way to fix the issue though – it seems to be a weird browser bug. One solution would be to use js to calculate the cart button position but I’d prefer a css solution and I’ll wait for Kriesi. My css solution is to extend the body width to 100% and to re-position the cart html code. Then we can use the wrap_all class to determine the box/content container width.
Hi!
Did you solve the issue?
Best regards,
Peter
1) If you want to remove the Kriesi link add
[nolink]
at the end of the input area for the copyright field in the footer section of the theme options.
2) none except two shortcodes show up in the text editor
The shortcodes will only appear in the standard editor. The advanced layout editor and the text block, etc. do not support more than two shortcodes at the moment because the editor elements replace the shortcodes.
3) the list navigation on the left is not showing the correct styling (shows bullets)
Can you post a link to your website please? I’ll look into it.
There’s currently no option to use special sidebars on portfolio archive pages. You can use widget logic:
http://wordpress.org/extend/plugins/widget-logic/
and the conditional:
is_tax( 'portfolio_entries' );
to display certain widgets on the portfolio archive page only.
-
AuthorPosts