Forum Replies Created
-
AuthorPosts
-
Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
@hohnesy to add post meta to your posts created with the advanced layout editor, Try adding this code to the end of your functions.php file in Appearance > Editor:function post_meta_shortcode(){ ob_start(); $taxonomies = get_object_taxonomies(get_post_type($the_id)); $cats = ''; $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id); if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' '; } } } if(!empty($cats)) { echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; echo $cats; echo '</span>'; } echo "<span class='post-meta-infos' style='margin-top: -25px;'>"; $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false)); echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>"; echo "<span class='text-sep text-sep-date'>/</span>"; 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 text-sep-comment'>/</span>"; } echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." "; echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>'; echo '<span class="vcard author"><span class="fn">'; the_author_posts_link(); echo '</span></span>'; echo '</span>'; echo '</span>'; echo '</span>'; return ob_get_clean(); } add_shortcode( 'sc_post_meta', 'post_meta_shortcode' );
then add this shortcode to your text block element:
[sc_post_meta]
Back end:
Front end:
Best regards,
MikeHi,
Do you mean “PROTECTING INGENUITY” try this:@media only screen and (max-width: 767px) { .av-special-heading {width: 10%!important;}}
Sorry I was unable to find a solution for the second part.
Best regards,
MikeHey elames,
You can remove (your host)\wp-content\themes\enfold\includes\admin\demo_files
which will clear 22.9 mb
You may wish to clear the language files you are not using in: (your host)\wp-content\themes\enfold\lang
which will save about 15 mbBest regards,
MikeHey karen,
If you are using the theme for the same domain and on a sub domain then you should be ok with a single license.
You can use a sub domain as a staging area for develop your site in Enfold before moving it to your live domain, or you can develop on your desktop with a localhost app, such as the free version of MAMP for Mac or XAMPP for Windows, or LAMP for Linux :)
I use the portable UwAmp on Windows 10Best regards,
MikeHi,
I don’t have a dynamic solution for this, other than when this occurs to offer some css to fix. It is typically very infrequent.
I’m not sure I understand the second question, but I think this is due to the browser calculating the sizes of the elements and when you resize the window the browser is not recalculating correctly. If you refresh the browser at any size it will calculate correctly.
Also note that in the coding, not everything is done in percentages of the browser window, many things are set to standard device widths and there are many odd widths between device sizes that might not look right. For example phones are 425px, tablets are 768px, so at 553px things might not look right, but there is no device that size :)
Hope this helps.Best regards,
MikeHey Shiv722,
Sorry scrolling tabs is not an option right now, Please feel free to request – or vote if already requested – such feature on Enfold feature request form.
But I wrote some code to help :)
This is for tablets to bring the tabs closer together:@media only screen and (min-width: 768px) and (max-width: 1023px) { #top .av-section-tab-title { padding: 0px !important; } #top .av-tab-section-tab-title-container .av-section-tab-title { padding-right: 10px!important; }}
This is for mobile to center the tabs and bring them closer:
@media only screen and (max-width: 767px) { .av-tab-section-tab-title-container.avia-tab-title-padding-default { left: -200px !important; } #top .av-tab-section-tab-title-container .av-section-tab-title { padding-right: 0px!important; } #top .av-section-tab-title { padding: 0px !important; }}
As for your TM, I removed the span style and added a span class and wrote this css for mobile and desktop:
.tm {font-size: 40px !important; } @media only screen and (max-width: 767px) { .tm {font-size: 20px !important; }}
adjust to suit :)
Best regards,
MikeHey digitalprint2222,
Try adding this code to the end of your functions.php file in Appearance > Editor:add_filter( 'avia_breadcrumbs_trail', 'remove_category_from_breadcrumb', 50, 2 ); function remove_category_from_breadcrumb( $trail, $args ) { if ( is_single() ) { unset ($trail[1]); unset ($trail[2]); } return $trail; }
Best regards,
MikeJuly 16, 2017 at 5:21 pm in reply to: Mega Menu / Sub Menu behavior on 4.1.1 – need help please #822098Hey goldengate415,
Thank you for the great explanation of the issues, we would like to see this in action but, in the Private Content area you have a link to your site prior to 4.1.1 where everything works right, but I don’t see a link to your staging site to examine the issues.
Can you please include a admin login in the private content area to the staging site also?Best regards,
MikeHi,
Sorry I didn’t realize it was on your localhost, that will make writing custom code for you tricky as we try to target your page ID, div, element, and test on different screen sizes, etc. As I can’t tell what any of these are for your site, or the size of the largest element, I will try to guess :)
Try this code in the General Styling > Quick CSS field:.grid-content {min-height: 100px!important; }
adjust the 100px to suit.
Here is a screenshot of the demo:
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Sorry, what I mean by “the Zip extension needs to be installed on your host” is that some web hosts don’t install “PHP Zip extension” by default, or there is some error in it. In this case when you upload a Zip file your web host can’t open it.
Please ask your web host to check that the PHP Zip extension is installed and working right.
This is often the solution for your issue :)Best regards,
MikeHi,
Please include the url to the page in question so we can take a closer look and try to write some code for you. :)Best regards,
MikeHi,
I just looked and your theme is up to date, Enfold 4.1.1
It looks like you did it :)
Best regards,
MikeHi,
Your issue was the Yoast plugin was redirecting the author achieve page.
I disabled it and your author page is now working. All your blog post have your author link at the top of the post with the date and category.
I couldn’t find a fix for the Yoast plugin, perhaps their support forum has an answer, try there :)
Try your author link in the Private Content area & see the screenshot.Best regards,
MikeJuly 16, 2017 at 3:46 pm in reply to: mobile menu after update overlays on logo and easy slider #822049Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
I don’t blame you for leaving HG, some find AWS has a steep learning curve, but it sounds like you’ve got it under control.
Shall we close this then?Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:#top .header_color .dropdown_widget .buttons {background-color: #000 !important; } div .dropdown_widget .cart_list li:hover {background-color: #000 !important; }
See screenshot in Private Content area :)
Best regards,
MikeHi,
Well, the text in the middle section is longer that the space so it makes a second line. You could edit the excerpt to be shorter, or add more to the other two excerpts? How were you hoping this would be handled?Best regards,
MikeHi,
Try this code, I added “important” to it and changed the 2.8s to 9.8s:.avia_transform .avia_start_delayed_animation.right-to-left { -webkit-animation: avia-rtl 9.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; animation: avia-rtl 9.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; }
Please see video in Private Content area of the 3 text blocks moving in slowly, just so I know we are looking at the same thing :)
Best regards,
MikeHi,
Perhaps you don’t have full admin access, or someone has supper admin and is blocking edit from you? Or you have a security plugin and you need to give yourself edit permission?
Try FTP access and edit functions.php at: (your host)\wp-content\themes\enfold
Save a backup copy of the un-modified functions.php on your desktop… just in case :)Best regards,
MikeHi,
Often this means the Zip extension needs to be installed on your host, please check with them that it is.
Sometimes it’s the folder and file permissions of your WP installation, please check: https://codex.wordpress.org/Changing_File_Permissions#Permission_Scheme_for_WordPressI did notice your WP & Enfold needs to be updated, this should be done and could help :)
Best regards,
MikeHi,
Sorry that is how the anchor works, it will detect if there is a hash in the URL and if it matches with a menu item it will highlight it. You can disable the highlight state entirely by opening js/avia.js and look for line 256:applyClass: 'current-menu-item'
Replace it by:
applyClass: ''
Best regards,
Mike -
AuthorPosts