Forum Replies Created
-
AuthorPosts
-
Hi,
I checked the capabilities – please try read, upload_files, edit_published_pages, edit_pages, edit_published_posts, edit_posts, edit_files.
Best regards,
DudeHi,
You can use the “custom css class” (“Benutzerdefinierte CSS Klasse” field) to add a custom css class to your table: http://www.clipular.com/posts/4511333538856960?k=I1WSjPrJ6YNKSR6CEZTW5vJvv-k
I did this for the tables here: https://zfag.focus-demo.ch/leistungsausweis/ and added the class “right_td”. Note that your class name “right td” won’t work because spaces are not allowed (use underscores or minus symbols instead). I also had to replace the class names in the quick css field.
Please clear your browser cache if you don’t notice any table styling changes.
Best regards,
DudeHey fanlokbun,
1) You can activate the debug window by adding this code to the child theme functions.php file:
add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }
2) Kriesi used this shortcode to create the typing effect:
[av_headline_rotator before_rotating='Hi! I am Max and this is my portfolio. I can help you build a' after_rotating='Don’t be shy, get in touch!' interval='3' animation='typewriter' margin='40px,0,170px,0' tag='h3' size='5vw' align='left' custom_title='#0a0a0a' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av_uid='av-jffs3b9z' admin_preview_bg=''] [av_rotator_item title='beautiful logo.' link='' linktarget='' custom_title='' av_uid='av-9kdge'] [av_rotator_item title='successful brand.' link='' linktarget='' custom_title='' av_uid='av-dzkxq'] [av_rotator_item title='thriving business.' link='' linktarget='' custom_title='' av_uid='av-a9cdi'] [/av_headline_rotator]
Best regards,
DudeHi,
I noticed you’re using the advanced layout builder. I’d recommend to use a shortcode to place the breadcrumb where you want.
1) Add this code to your child theme functions.php:
function av_breadcrumbs_shortcode( $atts ) { return avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true)); } add_shortcode( 'av_breadcrumbs', 'av_breadcrumbs_shortcode' );
2) Add a text block or code element to your pages where you want to display the breadcrumb (i.e. below the headline or image). Then insert this shortcode into the text/code element:
[av_breadcrumbs]
Best regards,
DudeHi Gene!
Since Enfold 4.2 you can use the performance settings to compress/minify the js/css files. Go to Enfold > Theme Options > Performance and enable the “CSS file merging and compression” and “Javascript file merging and compression” option. This will not affect theme updates, etc. – however I’d recommend to re-save the theme options after each update to regenerate the minified/compressed files manually.
Cheers!
PeterHi,
This is not a high priority issue at the moment but we’ll look into it.
Can I hire a developer to create a child theme and somehow patch around this?
Yes – this user https://toolset.com/forums/topic/my-custom-post-types-layouts-displays-nothing/ created a custom template from the single.php file and replaced the get_template_part() function with a the_content() function. I’d recommend to copy the single.php file to the child theme directory, then rename it to single-CPTSLUG.php (replace CPTSLUG with the slug of your custom post type) and open up the file. Then replace:get_template_part( 'includes/loop', 'index' ); $blog_disabled = ( avia_get_option('disable_blog') == 'disable_blog' ) ? true : false; if(!$blog_disabled) { //show related posts based on tags if there are any get_template_part( 'includes/related-posts'); //wordpress function that loads the comments template "comments.php" comments_template(); }
with:
the_content();
and save the file.
Best regards,
DudeHey Dirk,
Please create us an admin account and we’ll check your configuration.
Best regards,
DudeHey gabs01,
No, the Enfold contact form does not support file uploads. You can install an advanced contact form plugin like Formidable .
Best regards,
DudeHi,
Glad I could help you :)
Best regards,
DudeHey Bärbel,
Buddypress is not officially supported but we’ll do our best to help you with small customization requests (i.e. styling issues with Buddypress pages, etc.).
When you buy the theme you’ll get 6 months support for free. Here: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Zweistein you can also extend support to 12 months. Afterwards you can prolong support from your themeforest user account page.
Best regards,
DudeJuly 1, 2018 at 5:32 pm in reply to: Big question and much bigger request: filter portfolio entries multiple times #979863Hey beyond-flora,
Starting with version 4.3 the avia.js file does not contain the isotope/portfolio filter js code anymore. We decided to split the js/css code into multiple files to increase the theme performance ( https://kriesi.at/archives/enfold-4-3-performance-update ). Now the code will not load if no portfolio/filter element is embedded in the active page.
To solve the issue you need to customize the theme files again. You can find the js code in enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.js
The portfolio php code can be found in enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php.
At the moment we do not plan to bundle your code with future updates. However you can suggest a new feature here: https://kriesi.at/support/enfold-feature-requests/ and maybe we’ll include it if we get positive feedback from other users.
Best regards,
DudeHi,
The login credentials still didn’t work for me. However please try to add this code to the child theme functions.php file to change the post order globally:
add_filter('avia_blog_post_query', 'avia_modify_post_grid_query_desc', 10); function avia_modify_post_grid_query_desc( $query ) { if( !empty($query) ) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; } return $query; }
You can replace ASC with DESC to revert the order.
Best regards,
DudeHi,
Did you try to simply embed the shortcode into a “Text” element. You don’t need to use the “Code” element for shortcodes. You can try to replace the ” with a ‘ sign like:
[wpgmza id='1']
If it still doesn’t work please create us an admin account and we’ll look into it.
Best regards,
DudeThis reply has been marked as private.Hi,
Sounds like wordpress can’t send e-mails. Please try to install and configure a smtp plugin like https://de.wordpress.org/plugins/wp-mail-smtp/ – hopefully it will solve the issue.
Best regards,
DudeHi,
Ist das Problem jetzt gelöst? Die Website wird mir als sicher angezeigt und ich bekomme keine 404 Meldungen bei den Netzwerk-Ressourcen (Dateien nicht gefunden, etc.)…
LG,
DudeHi,
Did you set up a google maps platform account? Ohterwise the API key won’t work. Please don’t forget to configure your billing account ( https://cloud.google.com/maps-platform/ ).
Best regards,
DudeHi,
Please try to replace:
echo $category->description
with:
echo do_shortcode($category->description);
to execute shortcodes which are embedded in the description text.
Reference: https://developer.wordpress.org/reference/functions/do_shortcode/Best regards,
DudeJune 30, 2018 at 8:33 am in reply to: Öffentliche Seiten verstecken… Default-Footer zeigt alle Seiten. #979568Hi,
Ich habe den Link entfernt. Könntest Du bitte einen Admin-Account für mich einrichten – ich sehe mir das Problem dann näher an. Der Link weiter oben scheint nicht mehr zu funktionieren.
Liebe Grüße,
DudeHi raidbowz!
Füge folgenden Code in die child theme functions.php ein, um den “Produkt Kurzbeschreibung”-Text im Produkt-Slider und auf der Shop-Seite (inkl. Produktkategorieseiten) anzuzeigen:
function woocommerce_after_shop_loop_item_title_short_description() { global $product; if ( ! $product->get_short_description() ) return; ?> <div itemprop="description"> <?php echo apply_filters( 'woocommerce_short_description', $product->get_short_description() ) ?> </div> <?php } add_action('woocommerce_after_shop_loop_item_title', 'woocommerce_after_shop_loop_item_title_short_description', 5);
Liebe Grüße,
PeterHey!
Glad the problem is solved now!Regards,
PeterHey!
Great, I’ll close the thread now.Cheers!
PeterHi,
You can try to add following code into the css field:
#top .social_bookmarks li.social_icon_1, #top .social_bookmarks li.social_icon_2{ border-right: 3px solid #fff !important; }
By replacing 3 with a lower/higher value you can change the width of the separator. If you want to change the color replace #fff (white) with any other hex-color value ( https://www.w3schools.com/Colors/colors_hexadecimal.asp ).
Best regards,
DudeJune 23, 2018 at 7:07 pm in reply to: Privacy policy message to comment form styling issue on mobile #977062Hi,
Please try to add this code to the quick css field:
#top #commentform p.comment-form-cookies-consent{ <span class="webkit-css-property">margin-bottom</span>: <span class="value">30px</span>; }
Best regards,
DudeHey ernaborbas,
I’m not sure which letters you mean but I guess you want to change the font weight of the main menu links to make the letters thinner.
You can add this code to the quick css field:
#top .av-main-nav > li > a { font-weight: 400; }
Replace 400 with a lower or higher value to change the font weight (lower = thinner). If this doesn’t solve the issue please describe which font you want to edit.
Best regards,
DudeJune 23, 2018 at 6:53 pm in reply to: Avia Layout Editor not available for WP Courseware sites #977057Hey!
Ok, I’ll close this thread now.Best regards,
PeterHey John Staley,
The support forum account is connected to your Envato/Themeforest account. Without the login credentials for the envato/themeforest account we can’t create you a support forum account.
Best regards,
DudeHey Sorprentas,
I tested it and I can see a checkbox with “Een account aanmaken?”.
Please note that WooCommere will not show the checkbox if you’re logged in. You must deactivate the coming soon mode, log out and then try to place an order…
Best regards,
DudeHi!
Ok, ich lasse den Thread mal offen :)Regards,
PeterHey eny4W,
I didn’t test it but you could try to replace line 53 in wp-content\themes\enfold\js\avia-snippet-cookieconsent.js
document.cookie = CookieName+"="+CookieValue+expires+"; path=/";
with
document.cookie = CookieName+"="+CookieValue+expires+";domain=.example.com;path=/";
Of course you need to replace example.com with you domain, however keep the dot before your domain (ie .mydomain.com).
Reference: https://stackoverflow.com/a/23086139
Best regards,
Dude -
AuthorPosts