Forum Replies Created
-
AuthorPosts
-
Hi Gurify!
Thank you for using our theme.
Are you using the latest Version of WP 3.9.1 and of Enfold 2.8.1?
1) Disable all plugins and try again.
2) Change to a default WP Theme and try againif still not working, try to put in wp-config.php (WP root directory) at the end of the file:
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
Regards,
GünterHey!
Thanks for coming back.
Try to put in wp-config.php in the WP root directory at the end of the file the following:
define( ‘WP_MEMORY_LIMIT’, ‘128M’ );
define( ‘WP_MAX_MEMORY_LIMIT’, ‘256M’ );If this does not help, try to re-update WP.
Regards,
GünterHi!
Thank you for coming back.
You have to solve this problem within an action hook, because functions.php of the childtheme is loaded before the parent themes functions.php.
Try to put the following in functions.php of the child theme:
add_action('init', 'purpleedge_change_layout', 900); function purpleedge_change_layout() { global $avia_config; $avia_config['layout']['sidebar_right'] = array(‘content’ => ‘eight alpha’, ‘sidebar’ => ‘four alpha’, ‘meta’ => ‘two alpha’, ‘entry’ => ‘eight alpha’); }
This should overwrite the settings from enfold parent theme.
Cheers!
Günter- This reply was modified 10 years, 4 months ago by Günter.
Hallo Frank.
Kleine Ursache – große Wirkung.
Freut mich, dass wir so rasch helfen konnten und viel Freude mit dem Theme.
Liebe Grüsse aus Wien
GünterHi djshortkut!
Thank you for using our theme.
If you want to change the sizes you have to modify a core file.
Open functions.php in the root folder in a plain text editor and goto line 101 and line 108 (for extra large layouts).
Replace the values of width and height:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270);
For already uploaded images you either need to re-upload the image or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
Keep in mind, that you have to do these changes after every update because this file is overwritten.
Regards,
Günter- This reply was modified 10 years, 4 months ago by Günter.
Hi Swedfit!
Thank you for using our theme.
It is necessary to adjust the CSS, if the logo is larger than 340×156.
Can you post us a link to your page please.
Regards,
GünterHey Finlando!
Thank you for using our theme.
Can you give us the link to the page please so we can check the CSS.
Cheers!
GünterJuly 8, 2014 at 11:16 am in reply to: How do I increase the font size of the top row area with the phone and social #288405Hi jasonmwestbrook!
Thank you for using our theme.
Put in custom.css or Quick CSS the following and change the value of px:
#top .phone-info { font-size: 30px; }
Best regards,
GünterHallo Frank,
Habe versucht, mich einzuloggen, sehe aber nur das leere Dashboard. Es fehlen mir die Rechte als Administrator.
Was Du noch versuchen könntest, wäre das Speicherlimit von WP hinaufzusetzen. Füge dazu die folgenden Zeilen am Ende in die Datei wp-config.php im root von WP ein:
define( 'WP_MEMORY_LIMIT', '128M' ); define( 'WP_MAX_MEMORY_LIMIT', '256M' );
LG
Günter- This reply was modified 10 years, 4 months ago by Günter.
Hey webDesire!
Thank you for using our theme.
Check that WP Version is 3.9.1 and that you have write permisson on the WP Folders (with your host).
You also can try to completly reinstall WP and Enfold (Version 2.8.1) – maybe something went wrong.
If all this doesn’t help, please give us a link to your site and an admin account.
Best regards,
GünterHi!
You are using an old version of the theme. Pls. update to the new version 2.8.1.
Cheers!
GünterHey!
All the CSS files are loaded by the theme and/or plugins. The order in which the files are loaded are bufferd in the browser and if several styles are applied to an object the latest loaded value is taken. In case you need a value that is loaded not as the last, you use !important to force the browser to take this one, regrdless what is loaded after.
For our second question.
To be sure to talk about the same thing, can you give us a link to the page(s) where you want to change the styles?
Best regards,
GünterHey mario72!
Thank you for using our theme.
Sorry, our theme does not support widgets in the header area.
See also https://kriesi.at/support/topic/add-widget-to-header/ for more information.
Cheers!
Günter- This reply was modified 10 years, 4 months ago by Günter.
Hey anjmat!
Thank you for using our theme.
No, you have to modify it in the parent theme.
A better solution is to put your changes in styles.css of the child theme and leave the original css files untouched.
If you only need some CSS changes it is better to put them in the custom.css or the Quick-CSS of the parent theme to speed up loading.
If no changes are seen, apply !important to your changes, e.g.
.someclass {
display: none !important;
}Cheers!
GünterHey nijenron!
Thank you for using our theme.
Could you pls send us an admin login so we can check your settings.
Best regards,
GünterHi spaquet!
Thank you for using our theme.
Can we have an admin login to check in the backend your settings?
Best regards,
GünterHi!
Put the following in custom.css or Quick CSS:
#main { padding: 88px 0 1px 0; }
where the sequence of numbers are for top-left-bottom-right. Values are only examples and you can adjust them to your wishes.
Regards,
GünterHey!
There is no easy way to place the changing in the child theme. You have to do it in the enfold parent theme file.
Regards,
GünterHey!
Glad we coul help you.
Thank you for using the forum and enjoy the theme.
Regards,
GünterJuly 5, 2014 at 10:06 am in reply to: how to make random display portfolio items in short code – portfolio grid #287486Hi!
Glad we could help you.
Thank’s for visiting our forum and enjoy the theme.
Best regards,
GünterJuly 3, 2014 at 1:17 pm in reply to: how to make random display portfolio items in short code – portfolio grid #286638Hey garbath!
Thank you for using our theme.Actually you can change the order with a filter – i.e. add following code to the bottom of functions.php:
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'rand'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
and all portfolio grids will use a random order for the entries. However the tricky part is to change the order of some grids only. I recommend to change the order based on the current page id – in your case the code would look like
function custom_post_grid_query( $query, $params ) { if(is_page(array(42,50,45))) $query['orderby'] = 'rand'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
and instead of 42, 50, 45 insert the page ids of those pages which should display the portfolio grid(s) in a random order. You can separate the ids with a comma.
Best regards,
GünterHi taylor9797!
Danke, dass Sie unser Theme benützen.
Deaktivieren Sie einmal alle plugins und versuchen Sie es nochmals. Falls ein plugin einen Javascript Fehler verursacht, kann dies dazu führen, dass WP nicht mehr korrekt arbeitet.
Von unserer Seite aus muß die normale WP Funktionalität gehen.
Cheers!
GünterHey!
Glad we could help you.
Thank you for visiting the forum and enjoy the theme.
Best regards,
GünterHey!
Put the following code into custom.css or Enfold->Quick CSS:
.page-id-734 #main .content{ padding-bottom: 0px !important; }
Best regards,
Günter -
AuthorPosts