Forum Replies Created
-
AuthorPosts
-
August 25, 2021 at 11:51 pm in reply to: Enfold theme Version: 4.8.3 – css/js merging & compression issues #1318352
Anyone else have this problem? I experienced it this morning on one of my sites. I am still working though a few things to troubleshoot, but just thought I would check if @pangolindesignstudio has any resolve to it.
Hey, in case anyone else reads this… I ended up finding this thread that helped me get the mega menu a bit more accessible: https://kriesi.at/support/topic/make-mega-menu-accessible/#post-1253157
Thanks for getting back to me!
Hey Mike, thanks for that! I didn’t realize it was available on the parent menu items. Good news!
I was originally wanting it on the children of the menus and in the mega menu, but I have went a different direction.
Hey Mike, thanks for the reply! I got that part, and understand that the description is only available on left or right sidebar layouts. Not available on header top layouts. I am looking for the theme files where I could see the left sidebar code and then maybe grab it myself to put in the top header layouts.
Thanks!
This reply has been marked as private.April 27, 2020 at 9:44 pm in reply to: Redering Issues in Chrome / Windows / Wide Layout Issues #1207618Hey @check-t,
I was looking to do something similar to what you are looking for. I found a little trick that was quite simple and worked well.
In the theme settings, I set my layout to Boxed Layout 1680px wide.
Then I added some custom CSS to make the boxed layout go 100% wide instead of 90%.Here is the CSS I used.
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header { max-width: 100%; }
I needed this to work because I used grid rows and didn’t like how content looked when at full screen on my 2560px wide monitor. Hope this helps!
- This reply was modified 4 years, 6 months ago by dustingrof.
Hey Mike,
Thanks for the reply! At the time I wrote my original post I did not have any other plugins active except woocommerce. So the problem was still happening Autoptimize and Fooevents were not part of the problem. I only enabled them after I figured out the fix to this issue. I have since launched the site.
I had also done the Always Load all Elements thing you suggested and disabled cloudflare. Same problems still persisted.Unfortunately, I can’t show you the error because the site is live now, but just letting you know the steps I followed to reproduce and troubleshoot.
Cheers,
DHello,
I have narrowed it down to being an issue with the Blog Posts element being used on the single product page. I had it on my pages to display some related products based on category.
The element will break the page layout and cause the page to appear blank if you choose “Display entries from a custom taxonomy” and then choose Product Cat as the entries that you would like to display.
Of all the Blog Style options only Grid Layout will work with Display entries from a custom taxonomy and Product Cat selected. See screenshot below for examples
Hopefully, there will be a fix for this in an upcoming enfold release!
hey @schoenj,
I was reading the change log for 4.5.4 and it says that this problem was fixed. I ensured I am updated and still am not seeing the checkbox like it used to be. Are you up to date also?– fixed: added the missing “don’t display image on single post” option
- This reply was modified 5 years, 8 months ago by dustingrof.
I know there used to be a checkbox that said something like “hide featured image from single post”… hmmm wonder if there is a way to get that back.
Hey @boxseven,
I am wondering if you could help me by sharing your code for the postslider.php you used on Oak Leaf Automotive? I am trying to use advanced custom fields on my portfolio and don’ know how to grab that info into my post grid.
Any help would be greatly appreciated!Hey @luke86,
I like your solution better, it is less confusing for my clients.Thanks!
Hey folks,
I was looking for something like this and had an idea on how to shorten the process of uploading and copying the URL for a file. By adding a WYSIWYG editor to the button shortcode, you can upload a file using the Add Media button. Uploading the file in WYSIWYG doesn’t copy the URL to the link field, but at least you could copy the link from that spot and paste it into the manual link.
There are 4 steps to my suggestion: Copy buttons.php to child theme, modify the “Set Manually” text to say “Set Manually or Upload File”, add the WYSIWYG array below the Button Link array, and add CSS to functions.php to hide parts of the WYSIWYG editor in the button Modal Window.
First, I copied buttons.php from Enfold>config-templatebuilder>avia-shortcodes to my child them enfold-child>shortcodes
Second, modify buttons.php and the Button Link subtype array to say Set Manually or Upload File. :
array( "name" => __("Button Link?", 'avia_framework' ), "desc" => __("Where should your button link to?", 'avia_framework' ), "id" => "link", "type" => "linkpicker", "fetchTMPL" => true, "subtype" => array( __('Set Manually or Upload File', 'avia_framework' ) =>'manually', __('Single Entry', 'avia_framework' ) =>'single', __('Taxonomy Overview Page', 'avia_framework' )=>'taxonomy', ), "std" => ""),
Third, inside buttons.php add the following code right after the Button Link array:
array( "name" => __("Content",'avia_framework' ), "desc" => __("Use the Add Media button to upload a file. Then copy the URL to use as a link in the Button Link field above.",'avia_framework' ), "id" => "ContentInButtonModal", "type" => "tiny_mce", "required"=> array('link','equals','manually'), "std" => __("", "avia_framework" ) ),
Fourth, add the following code to your child theme’s functions.php
//Remove the WYSIWYG content in the button Modal Window add_action('admin_print_scripts', 'avia_gravity_forms_admin'); function avia_gravity_forms_admin() { echo "<style type='text/css'>"; echo "#wp-aviaTBContentInButtonModal-editor-container, #wp-aviaTBContentInButtonModal-editor-tools .wp-editor-tabs { display: none; }"; echo "</style>"; }
- This reply was modified 7 years, 6 months ago by dustingrof.
January 25, 2017 at 11:59 pm in reply to: Ajax Portfolio Slideshow Transition to fade instead of slide #738659Hold off, I am making some progress on this. I will update after.
DJanuary 24, 2017 at 8:33 am in reply to: Ajax Portfolio Slideshow Transition to fade instead of slide #737596January 20, 2017 at 8:16 pm in reply to: Ajax Portfolio Slideshow Transition to fade instead of slide #736632Hey Vinay,
The link is below, the IP address is to access the FTP.
Thanks!
D
January 19, 2017 at 9:13 pm in reply to: Ajax Portfolio Slideshow Transition to fade instead of slide #736098Hey Yigit, I am still looking for help on this. But if you are looking at the site, I am testing using a gallery on some of the portfolio packages (probably won’t actually use them) instead of the slideshow. So when you have time to get back to it, I wanted to let you know that the first 5 portfolio items use gallery, and the rest use slideshow.
I have also been toying with the idea of instead of changing the transition to fade, I just remove the transition all together. Would that be easier than troubleshooting why it is not working?
January 18, 2017 at 12:38 am in reply to: Ajax Portfolio Slideshow Transition to fade instead of slide #735042Hey, sorry about that… See private content below:
- This reply was modified 7 years, 10 months ago by dustingrof.
January 17, 2017 at 2:10 am in reply to: Ajax Portfolio Slideshow Transition to fade instead of slide #734430Okay, all done. See login below:
- This reply was modified 7 years, 10 months ago by dustingrof.
January 17, 2017 at 1:13 am in reply to: Ajax Portfolio Slideshow Transition to fade instead of slide #734417Any update on this would be greatly appreciated!
January 14, 2017 at 12:55 am in reply to: Ajax Portfolio Slideshow Transition to fade instead of slide #733394Sounds good! I made the change on line 1498 of shortcode.js.
The link is in the private content because it is not ready for public :)
Tested in Safari and Chrome using private/incognito and empty cache.
- This reply was modified 7 years, 10 months ago by dustingrof.
Hey,
I was having a similar problem, but only for one of my posts. I found that changing the slug for my post caused linkedin to update the preview and display the image. As soon as I changed the slug back, the preview was missing the image. Maybe linkedin has some sort of cache of the post preview. Hope this helps someone…
All is good now that I ran a Wordfence scan and restored my core files to the repository version. I was then able to get updated to the most current version of WordPress and the problem went away.
Hope this helps someone else in the same situation!
Hey, I was about to post you some credentials and let you know that I was still running into the same issue when I removed the code. But then I looked down at the bottom of my page and noticed my wordpress version was at 4.2.2.
I thought that was weird, because I was not getting the usual update notification at the top. This site of mine is hosted on my clients server rather than my own. I found this thread and am going to get updated before I get back to you. Note the solution to the problem is way down at the bottom.
https://wordpress.org/support/topic/wp-updates-not-showing-latest-wp-version-available
Following this post, looking for the same implementation. Can’t see the custom field after modifying postslider.php
Thanks in advance!
Thanks Josue!
This reply has been marked as private.May 5, 2014 at 12:06 pm in reply to: Fixed Header, Bottom Aligned Navigation, Shrinking Problem #260199Thanks!
Thanks Devin, I will wait for it. Until then, I have modified the parent.
D
-
AuthorPosts