Forum Replies Created
-
AuthorPosts
-
August 7, 2017 at 5:17 pm in reply to: add LinkedIn Conversion Tracking to child theme – functions.php #835481
Hey
Please use following code to add the code in
<head>tagfunction my_custom_code_head(){ ?> //Your code goes here <?php } add_action('wp_head', 'my_custom_code_head');and following code to add in
<body>tagfunction my_custom_code_body(){ ?> // Your code goes here <?php } add_action('wp_footer', 'my_custom_code_body');Best regards,
Yigit-
This reply was modified 8 years, 6 months ago by
Yigit.
Hi!
Glad Rikard could help! Let us know if you have any other questions or issues ;)
Regards,
YigitAugust 7, 2017 at 4:59 pm in reply to: z-index for code block in a color section not working #835469Hey Clemens,
Sorry for the late reply!
Can you please post a screenshot and show the issue?
Best regards,
YigitHey,
You can try using this plugin – https://wordpress.org/plugins/svg-support/ and uploading your logo as SVG
Best regards,
YigitHello,
Please contact Envato support and request refund. With such attitude, we will not be providing you support.
Regards,
YigitHey Niemitz,
Sorry for the late reply!
It seems like you have removed the widget from your page. If you would like to revisit, please post a screenshot and show the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here
Best regards,
YigitHi,
Sorry for the late reply!
1- If you choose to use Enfold’s testimonials element, you will need to hire a freelance developer and have it implemented in your child theme once (you may need to update the file if we make any changes on testimonials elements). You can save your testimonial element as a template and insert Enfold shortcodes inside to display different fields, elements.
You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Or, You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
then you can create any of them and copy/paste shortcode into any other content element or into text widget.2- No, it would not. You can refer to this post – http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/ and apply the changes on your child theme.
3- Enfold/config-templatebuilder/avia-shortcodes/testimonials.php file is the file you are looking for :)
Best regards,
YigitHey,
Sorry for the late reply!
According to this site – http://downforeveryoneorjustme.com/, your website is currently down. Please check the link once again.
Best regards,
YigitHey!
No, when you install Widget Logic plugin, you will see a field where you can insert that logical condition not to display chosen widgets on search page :)
Cheers!
YigitHey Chris,
Our devs are already aware of the issue and working it. Currently mobile menu items strip out that custom classes. We cannot provide an ETA yet however it will be fixed soon :)
Best regards,
YigitHi,
Always happy to help! Let us know if you have any other questions or issues!
Best regards,
YigitHi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)Best regards,
YigitHi,
Please go to Enfold theme options > Layout Builder and check “Show element options for developers” and then edit your Mailchimp signup button and give it a custom CSS class and then add following code to Functions.php file in appearance > Editor
function av_mc_onclick(){ ?> <script> jQuery(window).load(function(){ jQuery('.your-custom-class .button').attr('onClick','HERE GOES YOUR ONCLICK EVENT'); }); </script> <?php } add_action('wp_footer', 'av_mc_onclick');Best regards,
YigitHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
.av-inner-tab-title { font-size: 15px; }Best regards,
YigitHi,
Sorry for the late reply!
Please change the code to following oneexclude : '.page-id-14154, .page-id-14154 a, .noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]',Best regards,
YigitHi!
You are welcome! Let us know if you have any other questions or issues :)
Best regards,
YigitHi,
We only provide support via our support forum and only to our registered users.
You can register to our support forum here – https://kriesi.at/support/register/ and then start a new thread under Enfold sub forum – https://kriesi.at/support/forum/enfold/#new-post.
Best regards,
YigitHey!
There was a missing closing curly bracket in your code. I added it. Please review your website
Cheers!
YigitHi,
You can create your forum page using bbPress shortcodes – https://codex.bbpress.org/features/shortcodes/
You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Or, You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
then you can create any of them and copy/paste shortcode into any other content element or into text widget.Best regards,
YigitHey Christina,
You can try using this plugin – https://wordpress.org/plugins/widget-logic/ and use
!is_search()Cheers!
YigitHi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)Best regards,
YigitHi,
Bevakasha! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)Best regards,
YigitHey!
Replied you here – https://kriesi.at/support/topic/custom-button-urgent-attention-2/
Let us continue there.Cheers!
YigitHi,
You do not have child theme installed at the moment. Please install and activate it – http://kriesi.at/documentation/enfold/using-a-child-theme/ and then add following code to Functions.php file of your child theme in Appearance > Editor
Best regards,
YigitHi,
Please change the code to following one
function av_move_icon(){ ?> <script> jQuery(window).load(function(){ jQuery(".single .dot-irecommendthis").detach().appendTo('.single .blog-categories.minor-meta') }); </script> <?php } add_action('wp_footer', 'av_move_icon');Best regards,
YigitHey!
Please switch user role to administrator so we can check if you have any errors in your custom CSS.
Regards,
YigitHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
.search header.entry-content-header { pointer-events: all; }Best regards,
YigitAugust 7, 2017 at 12:12 pm in reply to: Enfold Team Member Description, is it possible to hide until you click? #835328Hey BrittS,
Sorry for the late reply!
Could you please try using Accordion element – http://kriesi.at/themes/enfold-2017/elements/accordion/?
You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Or, You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
then you can create any of them and copy/paste shortcode into any other content element or into text widget.Best regards,
YigitHey Ahmad,
Sorry for the late reply!
You can use a plugin such as this one – https://wordpress.org/plugins/relevanssi/ and find Enfold implementation here – http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/ :)
Best regards,
Yigit -
This reply was modified 8 years, 6 months ago by
-
AuthorPosts
