Forum Replies Created
-
AuthorPosts
-
May 30, 2013 at 7:35 am in reply to: "Du hast nicht die erforderlichen Rechte, um auf diese Seite zuzugreifen" #122011
Hi!
Möglicherweise ist dies ein Problem mit einem Membership Plugin oder einer anderen “Third Party Extension”? Probiere alle anderen Extensions zu deaktivieren und überprüfe, ob dies das Problem löst.
Regards,
Peter
Hi!
Thanks cyoniq for helping us out. Personally I’d recommend to use the codestyling plugin – see: https://kriesi.at/support/topic/hardcoded-text#post-114818
Best regards,
Peter
Please use ftp to install the template. Connect Filezilla (or any other ftp client) to your server and navigate to wp-content/themes/. Then delete the _MACOSX folder and upload the uncompressed Enfold theme folder into the wp-content/themes/ folder. The _MACOSX folder is useless ( http://superuser.com/questions/104500/what-is-macosx-folder ).
If your website is slow I’d recommend to deactivate third party extensions which are not required and to increase the allocated memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Hey!
I’m not sure – I’ll tag this thread for Kriesi.
Best regards,
Peter
Please try following – in functions.php replace:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
with
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>360 ); // images for fullsize pages and fullsize slider
and regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/
I tried to reproduce the issue with 1.5 but I couldn’t. Please try to re-install/upload all theme files again – maybe some files are not updated yet. If this still doesn’t solve the problem deactivate all third party plugins and check if this solves the issue. If not, add following code to functions.php:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}insert it at the very top after
global $avia_config;
Then go to the page which contains the table shortcode and copy the content of the debug field
Afterwards post it in this forum – you can use the backtick character ` to post it as a raw code snippet.
It’s not possible to add a shadow to the box if you’re using a background image. The problem is the html structure which does not allow you to add the shadow to the box itself but you must apply it to the body element. If you don’t need a background image you can use following code:
.responsive .boxed#top{
-moz-box-shadow: 0 0 15px #111;
-webkit-box-shadow: 0 0 15px #111;
box-shadow: 0 0 15px #111;
}I’d recommend to use the font face generator: http://www.fontsquirrel.com/tools/webfont-generator
Then upload the font files into the enfold/css folder and add your font face code to custom.css. Afterwards you can use the font-family attribute to apply the font to any html element: http://www.css3.info/preview/web-fonts-with-font-face/
Yes sure – you can add your code to wp-contentthemesenfoldincludesloop-search.php. Eg for a read more button replace:
the_excerpt()
with
the_excerpt();
echo '<div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';May 30, 2013 at 6:56 am in reply to: REMOVE DEFAULT SIDEBAR IN ARCHIVE / CATAGORY OR TAG SEARCH #121676Hey!
If you just want to change the widgets on the search page use:
is_search()
But again – you can’t restrict it to “posts” or “page” searches, etc.
Best regards,
Peter
Hi!
No, unfortunately this is not possible. I’d recommend to use a plugin like Formidable Contact Form which comes with a registration addon.
Best regards,
Peter
Hi!
We did not remove them. If you want to display them again follow this article: http://geektnt.com/link-manager-missing-after-on-wordpress-3-5.html
Best regards,
Peter
Yes, these text strings are hardcoded but I’m not sure what you want “to fix” here. Obviously you need to write the text into the theme files somehow.
If you want to translate the theme files use the Codestyling plugin: http://wordpress.org/plugins/codestyling-localization/ and translate all strings from the “avia_framework” textdomain. Select the enfold/lang folder as translation path. I recommend to use the latest version (Enfold 1.5.x) for the translation because previous versions will cause some troubles with the codestyling plugin.
That said all text strings are translatable and you can change them with language files. We won’t remove them or replace them with eg text strings from the database.
I’m not sure if Kriesi will release the 1.5.1 update or if he wants to wait some time to release a major update. To fix the default sidebar issue open up sidebar.php and replace
avia_sidebar_menu();
with
$av_sidebar_menu = avia_sidebar_menu(false);
if($av_sidebar_menu)
{
echo $av_sidebar_menu;
$default_sidebar = false;
}
$the_id = @get_the_ID();Yes, update to Enfold 1.5. Then you should be able to use the “Description” field on the attachment/media editor page to add a description text.
May 29, 2013 at 2:23 pm in reply to: Visual editor crashes with certain codes in text block – how to ignore? #121836Hi!
Ah ok. inline javascript won’t work. I’d recommend to try http://wordpress.org/plugins/insert-html-snippet/
Regards,
Peter
Hey!
This is maybe an issue with the font family. Did you try to select another google webfont?
Regards,
Peter
Yes – Kriesi implemented a logic which will remove the overlay if there’s not enough space for the icon (simple because it looks broken in this case). If you still want to display it open up enfold/js/avia.js and search for:
if(current.outerHeight() > 100)
Replace the value 100 with a smaller one (eg 50)
May 29, 2013 at 12:27 pm in reply to: Change the vertical alignment of the top menu for Enfold #121581Hey!
You can use a media query – eg use following code instead:
@media only screen and (min-width: 768px) {
#menu-top-menu {
margin-top: 30px;
margin-left: -180px;
}
}It won’t affect devices with small screens.
Best regards,
Peter
Hi!
Let us know if it works :)
Regards,
Peter
May 29, 2013 at 12:23 pm in reply to: IE8 : featured posts image in blog posts element not cropped correctly #120338Hey!
I corrected the code – it should work now. Just insert it before the closing head tag.
Regards,
Peter
May 29, 2013 at 12:15 pm in reply to: Visual editor crashes with certain codes in text block – how to ignore? #121834Hi!
Please install version 1.5. Kriesi fixed some editor bugs and there’s a high chance that the update will also fix this issue. You can download it from http://themeforest.net
Best regards,
Peter
Hi,
tbh I’m not aware of a thumbnail size which generates images with 666px. All sizes are defined in functions.php:
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
$avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)The portfolio uses the “portfolio” or “portfolio_small” size by default but since version 1.5 you can also choose a different thumbnail size.
Hey!
No, you can delete the _macosx folder. It’s useless.
Regards,
Peter
Please insert following code into the quick css field:
@media only screen and (max-width: 767px) {
#top .main_menu {
border: none !important;
}
.responsive .logo img {
width: 50% !important;
}
}You can also use another width value (i.e. 60%,70%, etc.)…
Try following code instead – it will use the “post title” instead of the “menu order”.
$args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column' => 'post_title', 'sort_order' => 'ASC');
$children = wp_list_pages($args);You can try the css background-position attribute: http://reference.sitepoint.com/css/background-position , http://www.w3schools.com/cssref/pr_background-position.asp
Use it like
.flex_column.av_one_full.first.avia-builder-el-0.avia-builder-el-first .avia_textblock > div > object {
margin-left: -1000px;
background-position:center;
}Personally I can’t test the website on WinXP but I’ll tag this thread for the other support staff members – hopefully one of them can reproduce it. Maybe WinXP doesn’t support the entire “Private Use Area” (unicode characters) and thus not all icons are supported/displayed. Another reason could be a bug (fontello font file): https://github.com/fontello/fontello/issues/71
-
AuthorPosts