smielock
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Photolite] Theme Responsive Moble Display not workingIt was the themes custom CSS block. I deleted yhe content and just changed the two things, not much, from the systems CSS file. I will have to create a childs folder so any updates dont reset what I have done. I did let Flythemes know and I believe thwy are going to take a look at the theme data to see why that occured. However as of right now it is fixed. Thanks for all of you help. I will probably wait a few days for Flythemes to get back to me and then close this thread. Cheers.
Forum: Themes and Templates
In reply to: [Photolite] Theme Responsive Moble Display not workingI wonder if it is a theme issue then because I am using Mailchimp for WP which is the same one the demo used. Nevertheless, i may need to ask you more specifically what and how you found this. If you dont mind. I am going to deactivate some of fhe plugins to see if that fixes issue, and the only other way i could see a second style sheet being introduced is via the themes custom CSS box, but that is designed for that purpose. Hmmmm, thanks. And I will keep looking. I did take tge systems original style sheet and copied back into the custom css block on the theme with no resolution. I may just simply delete ehat is in tbe custom section to see if thst fixes it. Thanks.
Forum: Themes and Templates
In reply to: [Photolite] Theme Responsive Moble Display not workingThanks CrouchingBruin. I did not touch the CSS other then add items (ie. For mailchimp) And I didn’t touch the actual file I used code in the Custom CSS area of the General Settings area. I will copy the CSS from original file and replace to see if that fixes it.
Forum: Plugins
In reply to: [The Events Calendar] Warning: in_array…post-template.php on line 1039Here is the gist of what should help you.
Here is the work around.
/wp-includes/post-template.php file is the one you will edit.
Line 1039 of wp-includes/post-template looks like:
if ( in_array( $page->ID, $_current_page->ancestors ) )
Recommended change:
if ( gettype($_current_page->ancestors) === ‘array’ && in_array( $page->ID, $_current_page->ancestors ) )
I also recommend you simply rename the original post-template.php file in case this does not work or creates additional problems.
This will do the trick until the new release comes out.
Forum: Plugins
In reply to: [The Events Calendar] Warning: in_array…post-template.php on line 1039Hi all:
I posted a fix to this on one of my previous postings. It is a quick fix and does the trick. If you search for my profile name in this support area you may find my posting to this issue. Actually, I found it. Check out this post. Hope it helps.
[resolved] Calendar Month View Issues (12 posts)
It was active about 2 weeks ago from the time of this posting.
Forum: Plugins
In reply to: [The Events Calendar] Header showing double/overlapingHi Jonahcoyote:
You know, I keep forgetting about other plugins and the effects they may have. I did have a “Logo on Admin Page” plugin, and even though there was that double logo on the events list page, there isn’t on any other admin page. Nevertheless, I am going to disable the other plugin as it really doesn’t matter to the front end user.
Thanks for the very fast reply. With all that I said, if you guys want to designate this threat as resolved that would be great. Thanks.
Forum: Plugins
In reply to: [The Events Calendar] Header showing double/overlapingHi roblagatta,
Here is the link to that double header issue. Let me know what you think. Thanks.
Forum: Plugins
In reply to: [The Events Calendar] Calendar Month View IssuesI would say this is resolved. Although, I would love to see if the calendar could expand ALL the boxes in order to keep that block format, when one block expands due to content. Just an asthetics thing from my OCD, 🙂 and quite possibly doesn’t effect everyone. Thanks.
Forum: Plugins
In reply to: [The Events Calendar] Updated tolatest Version and it broke the CalendarYou are welcome. Thanks all for your support in some of the issues I have been looking to fix. Great Forum.
Forum: Plugins
In reply to: [The Events Calendar] Header showing double/overlapingThanks. I have a picture of the situation, but how do I add a photo to this post? I notice some have links to the pic, but is there a way I can simply send you the picture? Thanks.
Forum: Plugins
In reply to: [The Events Calendar] Updated tolatest Version and it broke the CalendarI sent you an email asking if you needed help in finding and changing the file. I wasn’t sure you may have gotten it so I wanted to just reach out on the forum in case I missed you. I am glad the fix helped bloc78. I have asked for assistance on here a couple of times and folks are really really quick to chime in when they can. Pretty strong support structure on this forum. With that said thanks to all who have assisted me. I am sure I may be back with some other small tweaks. Very nice Calendar thus far. I am most likely going to upgrade to the Pro version soon. I use it too often and Pro seems to have some features I could really use. Sounds like a sales pitch, which I am not affiliate to this plugin, but when I find something I really like and works for me I like to support it. Cheers all.
Forum: Plugins
In reply to: [The Events Calendar] Updated tolatest Version and it broke the CalendarHere you go. Try this. I just went ahead and cut and paste my fix (I found) here so you have it at the ready. Cheers.
I found a fix for the Array Warning, actually off of the WordPress Support Ticket site. Here is the work around.
/wp-includes/post-template.php file is the one you will edit.
Line 1039 of wp-includes/post-template looks like:
if ( in_array( $page->ID, $_current_page->ancestors ) )
Recommended change:
if ( gettype($_current_page->ancestors) === ‘array’ && in_array( $page->ID, $_current_page->ancestors ) )
I also recommend you simply rename the original post-template.php file in case this does not work or creates additional problems.
Forum: Plugins
In reply to: [The Events Calendar] Updated tolatest Version and it broke the CalendarHi all,
I had the dreaded line 1039 warning and I fixed it using the steps I explain in one of my post. Please find Calendar Month View Issues by smielock. My very first post describes my problem and my second post is the fix. It is super easy and you will see immediate results. Hope that helps.
Forum: Plugins
In reply to: [The Events Calendar] Calendar Month View IssuesHi Andy,
Thanks once again. I couldn’t get the CSS working or at least show any change. However, you were on to something when you mentioned the “title of the event” being rather long. What I did was played with the actual way of naming the event in order to use words no longer than 9 or 10 letters in length. Whether you have scroll or not it seems there is no way to “break” a word in half, lol, so I just used smaller words or appreviation. Thanks for all of your help.
Forum: Plugins
In reply to: [The Events Calendar] Calendar Month View IssuesThanks Andy.
I will give that a try. Would that CSS line just go at the bottom of my main theme CSS or would I edit the CSS line as it directly relates to the plug? If so, which file and approx location would I insert that CSS line you recommended. Thanks in advance.