Forum Replies Created
-
AuthorPosts
-
Changing settings to 150×150 for Thumbnail photo solved the issue… thanks!
I do not remember. I think instead of a warning I got an “unknown” and then came here to the forum and asked, and was told that Enfold after 4.0 is compatible with php 7.
My suggestion is that you insist on them doing it live with a level 2 technician as I did, so you can monitor it as it progresses and they can revert if problems. We have been running php 7 and Enfold for a month or two now with no issues.
Go for it!
I am also on WP Engine and ran the compatibility checker and then upgraded the PHP 7….. everything is fine. It did not call out Enfold as an issue so as Yigit says make sure you have the most recent version of Enfold installed.
PHP 7 and Enfold and WP Engine work well together!
March 29, 2017 at 5:09 pm in reply to: Unable to insert comments element at end of blogposts #768929Also one more note – comments may not show in post preview mode, so you actually have to publish the test post to see them.
Ha ha ok Victoria, well welcome, we are glad you’re here… they desperately need help with the volume of requests they receive.
I will try this and report back on this thread if this works, so please leave thread open. Thanks! Rob
March 29, 2017 at 4:56 pm in reply to: Unable to insert comments element at end of blogposts #768917With respect to John, that information is not correct. I use the ALB all the time and use the comments element at the bottom of my posts (e.g. http://www.thomashenthorne.com/le-comptoir-san-rafael/) and it works just fine. Make sure you are adding the comments element at the very bottom of your post as the very last element.
On your admin dashboard, go to SETTINGS and then DISCUSSION SETTINGS tick the box next to ” Allow people to post comments on new articles “… and take a look at the other boxes under discussion settings to make sure other boxes are set appropriately. I hope that this solves your issue. I highly advise that you use Askimet to filter out comment spam, which is a huge problem, and also place all comments into moderation queue until you approve them.
Hope this helps!
:)
RobHi Victoria!
Welcome to Enfold! I think you are new here? Thank you for your help!!!
I went into WordPress settings and changed the default thumbnail from 80×80 to 150×150 and am hoping this might solve it? Do you think I also need to make the modification above?
Thanks!!!!
Rob
Great, thanks Yigit… once again you rock!
Hi Andy,
Wow. Surprising. Seems like basic functionality to rename a slider, and definitely if you google the request it is something often asked for.OK thanks….. & have a good day
Rob
March 23, 2017 at 4:33 pm in reply to: "X" to close mobile menu is no longer displaying on my home page #765544Yigit, you are a genius as always, that works great on mobile and tablet!! Thank you!!!!!!!!!!!!!! :)
March 23, 2017 at 3:50 pm in reply to: "X" to close mobile menu is no longer displaying on my home page #765529Oops, sorry, I pushed production to staging and overwrote the admin credentials for you… new credentials in private content.
Content in staging is not current so pls track any changes you make as I will need to manually make them back over in production. :) :)
Thank you!!!
March 22, 2017 at 9:48 pm in reply to: Helpful Tip to Prevent Youtube from Showing Related Videos #765072Thanks , Rikard, always happy to help!
Hoping one of you can help me with this thread that remains unanswered by mods….
Thanks!!
Rob
https://kriesi.at/support/topic/x-to-close-mobile-menu-is-no-longer-displaying-on-my-home-page/March 21, 2017 at 7:31 pm in reply to: "X" to close mobile menu is no longer displaying on my home page #764317There are no tools that have been added since this strange menu behavior began.
Thanks for jumping in, but at this point I would like the moderators to log into the staging site and try to figure out what’s going on.
Thanks and have a great day!! :)
March 21, 2017 at 4:26 pm in reply to: "X" to close mobile menu is no longer displaying on my home page #764248Thanks for trying to help, but that quick css above doesn’t solve the problem.
The background is white and the “X” is black so that should not be an issue. And I haven’t changed anything to cause this. Very strange.
I am seeing this error on console when I open the page, don’t know what it means:
.ytimg.com/yts/jsbin/www-widgetapi-vfldOJ-Ud/www-widgetapi.js:119 Failed to execute ‘postMessage’ on ‘DOMWindow
March 13, 2017 at 5:12 pm in reply to: Make Breadcrumbs bar / Title bar narrower & center text #760103Wow, huge improvement, and it looks great on desktop, tablet and mobile! Thank you!!!
BTW check out the new home page full screen slider welcome page with background video when you have a chance… I think it looks great. I finally learned Layer Slider after 2 years of putting it off! :)
Thanks again for all your help!!!
March 13, 2017 at 5:02 pm in reply to: Make Breadcrumbs bar / Title bar narrower & center text #760095Great, thanks, that’s definitely progress!
Is there a way to center the text between the top and the bottom inside the bar? Keeping the text left justified, but right now it’s “hugging” the bottom of the bar? Sample link in private content so you can see what it looks like now.
Thanks!
March 13, 2017 at 4:45 pm in reply to: Make Breadcrumbs bar / Title bar narrower & center text #760081Hi…. checking in….. thanks!
March 9, 2017 at 4:52 pm in reply to: Make Breadcrumbs bar / Title bar narrower & center text #758444PS I am having to update the production site now with new content so won’t be able to push the staging site back to production, so please keep track of any changes (I assume just css) so I can copy them into the new site manually.
Thanks!!!!!!
March 9, 2017 at 4:49 pm in reply to: Make Breadcrumbs bar / Title bar narrower & center text #758442Hey Yigit!
No worries! I know you guys are busy. I’m loving the new preview mode in the latest Enfold version by the way.
I updated the css on my staging site so you can see the problem on the new narrower breadcrumbs bar…. Posting link and admin credentials in private content section. I think you’ll see the problem as soon as you go to the link but if not please let me know and I’ll post a screenshot right away.
I’m not sure if this modification in functions.php is related but thought I’d paste it here in case it is:
/**** Enfold Support Added code below to add blog title to breadcrumbs bar ***/add_filter(‘avf_title_args’, ‘fix_single_post_title’, 10, 2);
function fix_single_post_title($args,$id)
{
if ( $args[‘title’] == ‘Blog – Latest News’ )
{
$args[‘title’] = get_the_title($id);
$args[‘link’] = get_permalink($id);
$args[‘heading’] = ‘h1’;
}return $args;
}Also, reviewing functions.php I have added a number of patches over the year+ from the help forum that I wonder if are still necessary as the theme has been updated, such as:
(1)
/********** Add Code from Enfold Support to Fix HTTP Error on Image Upload ****/
add_filter( ‘wp_image_editors’, ‘change_graphic_lib’ );
function change_graphic_lib($array) {return array( ‘WP_Image_Editor_GD’, ‘WP_Image_Editor_Imagick’ );}Do we still need the above line in functions.php to prevent the HTTP error on upload? Thanks (sorry, didn’t think that was worth a new thread)
Best & Thanks,
RobMarch 9, 2017 at 7:39 am in reply to: Make Breadcrumbs bar / Title bar narrower & center text #758192Hi…. bumping this thread as it’s been almost 4 days now?
Thanks!!
PS Staging site has been updated to a new version without the custom css above but hoping there is css code to center the text within the new narrower bar……
I think I had this same issue yesterday after I updated to 4.7.3…. do you see a spinning circle on the white screen? If it’s the white screen of death that can indicate low php memory from what I saw searching other threads here.
In my case, I added a second slide, and it started working. It doesn’t seem to like single-slide sliders based on the latest update.
Hope this helps you, but I’m sure the mods will jump in and help you too.
March 2, 2017 at 10:51 pm in reply to: Enfold 4.01 New Tab Section – How define content size? How change font size? #754684Great, thanks! :)
unsubscribing
This was due to the major Amazon web services outage yesterday.
March 1, 2017 at 4:49 pm in reply to: For Yigit, Continued: Add Widget / Code Box to Full Width Easy Slider? #753795Adding login credentials in private content :)
Great, thank you! That hides it. I just ordered a book on CSS so I can learn some of what you guys are doing to customize appearance.
BTW, I wasn’t really trying to improve the functionality of the plugin, was just trying to see if we should go about displaying the quick search a different way (i.e. as a text widget instead of a caption?)
Anyway, I’ll see what the plugin people say…. thank you again and good night!!!
Best,
RobAdding more info in private content…
February 28, 2017 at 6:49 pm in reply to: Insert transparent widget over full width Easy Slider? #753152Wow, thank you! It looks great! I will work with the plugin vendor on the dropdown boxes.
Thank you!
RobFebruary 28, 2017 at 6:31 pm in reply to: Insert transparent widget over full width Easy Slider? #753140Wow, thank you, great progress!
Is it possible to move this search box down a bit (uh oh, I’m moving captions again… de ja vu??) like in the original website…?Also, any ideas on how to make the text more legible? Maybe some sort of semi-transparent square around it like on the site I’m trying to copy?
Thank you legendary Yigit… wow!
:)February 28, 2017 at 6:22 pm in reply to: Insert transparent widget over full width Easy Slider? #753126Home page in private data
-
AuthorPosts