Forum Replies Created
-
AuthorPosts
-
Hey!
Great, glad it works now :)
Regards,
Peter
You’d need to add the map into a “color section” element. Then use the “For Developers: Section ID” option to give this section an unique id/name (eg “fullwidthmap” – without the quotes). Afterwards you can expand the section to 100% of the website width by using following css code
#fullwidthmap .container {
width: 100% !important;
}July 17, 2013 at 7:53 am in reply to: Search Function / Woo Commerce Product Headline Issues #129985Hi!
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.
Regards,
Peter
Yes – this should be possible. Just copy/paste the font face code into a css file and change the url paths to your cdn. Obviously you need to make sure that the font files (located in /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/) exist on the cdn server. Then open up wp-contentthemesenfoldconfig-templatebuilderavia-template-builderphptemplate-builder.class.php and delete/comment out:
$output .= AviaHelper::load_font($element);
Actually I’m also missing the content slider and we’ll implement it in a future update (see https://kriesi.at/support/topic/enfold-feature-requests – it’s already on the “So far requested and accepted” list). I can’t give you an ETA though. It definitely requires some work to transfer the slider from Corona to Enfold and we’ll probably not use the “old” content slider script from Corona but the new Enfold “post slider” script to build the content slider element.
Although I agree that it’s probably a better solution to create child theme files we can’t do this because it just takes too much time. We must work efficient and unfortunately we don’t have the time to explain how to use child themes, how to use code overwrites, etc. to modify the core files and so on. I expect that users who want to work with child themes read articles/tutorials, etc. and learn these things without our help and we can give them guidelines if the have a certain question (like: https://kriesi.at/support/topic/override-the-global-avia_config-within-child-functionsphp or https://kriesi.at/support/topic/generate-new-image-sizes-in-child-theme ) but we can’t explain how child themes work general, etc.
If we start to work this way we’ll get many more questions of inexperienced users (maybe we’ll even confuse them) and that’s something I don’t want…
Hey!
Try to wrap your code into a function and use the init hook to add your thumbnail size to the avia_config array: https://kriesi.at/support/topic/override-the-global-avia_config-within-child-functionsphp
Best regards,
Peter
This is a bug (or maybe a technical limitation) of the layerslider plugin. Eg our shortcodes are not responsive too if you embed them in a slide/use them with layerslider (see: https://kriesi.at/support/topic/layer-slider-reponsive ). Kriesi contacted the plugin author and we’ll see if he can fix the problem or not…
Try to add following code into the quick css field and insert the width/height values (in px) of the logo.
.logo img{
width: 60px;
height: 60px;
}Sometimes IE has problems to display images properly if no width/height values are specified…
July 17, 2013 at 7:00 am in reply to: HOW TO – See Tags like in Twitter Post & Before FB Plugin #1297971) Add following code into the quick css field
.blog-tags.minor-meta{
display: block;
}2) If you want to remove the comments meta field open up includes/loop-index.php and delete
if ( get_comments_number() != "0" || comments_open() ){
echo "<span class='comment-container minor-meta'>";
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
echo "</span>";
echo "<span class='text-sep'>/</span>";
}Hi!
At the moment this is not possible. I’ll mark it for Kriesi (feature request).
Best regards,
Peter
July 17, 2013 at 5:58 am in reply to: YouTube related videos, responsive heading titles and saving theme settings #129048Hi!
You can use: http://shoutkey.com/ – these links will expire and after 24h it won’t link to your website anymore…
Regards,
Peter
Hey!
Open up enfold/js/avia.js and replace
avia_header_size();
with
//avia_header_size();
Regards,
Peter
1) Coder is a person who writes code, web designer has no general meaning and many coder call themselves “webdesigner” too. However on the other hand many designers use it too even if they can’t write code at all.
2) Yes, outsourcing and hiring someone is common – especially for businesses.
3) How much am I expected to pay if I outsource the work? What key aspects/elements of building a website should I focus on when working with a web designer? Should I look for an expert on WordPress? Php? html? or web-design in general?
Depends on your project, budget, etc. – there’s no general answer and it’s up to you to decide how much you want to pay per hour.
4) I don’t see a lot of custom content yet but if you want “the best results” it’s probably a good idea to hire a skilled freelancer.
Hey!
Open up wp-contentthemesenfoldconfig-woocommerceconfig.php and delete following code
//get the sidebar
if(!is_singular())
get_sidebar();Regards,
Peter
If you want to pull the archive description into the shop template open up wp-contentthemesenfoldconfig-woocommerceconfig.php and replace
add_action( 'woocommerce_before_main_content', 'avia_woocommerce_before_main_content', 10);
with
add_action( 'woocommerce_before_main_content', 'avia_woocommerce_before_main_content', 10);
remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );and
echo "<div class='template-shop content ".avia_layout_class( 'content' , false)." units'><div class='entry-content'>";
with
echo "<div class='template-shop content ".avia_layout_class( 'content' , false)." units'><div class='entry-content'>";
woocommerce_product_archive_description();Versuche einmal folgenden Code am Ende von functions.php einzufügen
// THIS GIVES US SOME OPTIONS FOR STYLING THE ADMIN AREA
function avia_editor_fix_style() {
echo '<style type="text/css"> .thumb.column-thumb img{ width: 36px !important; height: 36px !important; } </style>';
}
add_action('admin_head', 'avia_editor_fix_style');Hey!
Please try to reset your database: http://wordpress.org/plugins/wordpress-database-reset/ and re-import the dummy content.
Best regards,
Peter
Please check the “Screen Options” on the page editor page
Make sure the checkbox of the “Advanced Layout Builder” is checked….
You’d need to add the slider into a “color section” element. Then use the “For Developers: Section ID” option to give this section an unique id/name (eg “fullwidthshowbiz” – without the quotes). Afterwards you can expand the section to 100% of the website with by using following css code (i.e. insert it into the quick css field):
#fullwidthshowbiz .container { width: 100% !important; }
In enfold/js/avia.js replace
$.avia_utilities = $.avia_utilities || {};
with
$.avia_utilities = $.avia_utilities || {};
var triggerportfolio = setTimeout(function(){jQuery('.grid-links-ajax a:first').trigger('click');},1000)and the first ajax item should show up automatically.
Hey!
Glad it works now :)
Best regards,
Peter
Hi!
Just add a “Contact Form” element/shortcode (layout builder or “magic wand” icon) to a page and save it. Enfold will replace the element/shortcode with the contact form.
Best regards,
Peter
WPML will save the current language in a cookie and you don’t need the &lang parameter. In addition Kriesi added some permalink rewrite rules to wp-contentthemesenfoldconfig-wpmlconfig.php (which replace the default &lang parameter) if you want to use pretty permalinks with WPML. Other translation plugins (like qtranslate) are currently not supported by Enfold and may not work as expected.
Not sure why this happens. Enfold does not link to the wp-content/themes/ directory directly but we just load css/js files from the directory and a js var (wrapped in a cdata tag) points to the directory. The web crawlers should ignore this path. Personally I’d suggest to use a robots.txt to exclude the directory from the search index.
Hey!
It seems like you solved the problem: http://www.screenr.com/HfMH ? You can select a thumbnail size on the “portfolio” element option screen/modal window.
Best regards,
Peter
Try following css code
#top #pe-container .input-text, #top input[type="text"], #top #pe-container input[type="input"], #top #pe-container input[type="password"], #top #pe-container input[type="email"], #top #pe-container input[type="number"], #top #pe-container input[type="url"], #top #pe-container input[type="tel"], #top #pe-container input[type="search"], #top #pe-container textarea, #top #pe-container select {
padding: 4px 6px;
margin-bottom: 5px;
}July 16, 2013 at 9:15 am in reply to: How to hide in blog posts: "Date" / "# Comments" / in "Tags" / by &quo #129598Yes – “in Tags” seems to be a category in your case (category with the name “tags”). “cats” is the acronym of “categories” and does not stand for animals, pets, etc.
Personally I wouldn’t recommend to remove the category listing because of seo reasons (because the categories link to the archive pages) but you can remove the comments link.
Please try to re-upload all theme files. I’d suggest to use ftp to overwrite the existing files. You can also try to switch to another theme and to re-activate Enfold. This will trigger some additional functions/hooks which might be required to install the updated version properly.
Hi!
Thanks for sharing your thoughts…
Best regards,
Peter
-
AuthorPosts