ultraloveninja
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Getting 500 Internal Server ErrorWas able to pull down the site locally and start testing further.
Looks like there is a conflict with the contact-form-7-to-database-extension plugin which has been deprecated for some time now.
Didn’t realize it was no longer maintained. Will be switching to Flamingo for submission storage moving forward.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Adding alt tags to images in gallery?@babyewok –
Nope. Still haven’t heard anything. I really don’t want to hack through it and create some sort of filter to handle them.Forum: Plugins
In reply to: [Clean Login] Hide page before loginI know this is closed, but I ended up figuring it out by using the
is_user_logged_in()
methods for showing alternate content.Thanks!
Forum: Plugins
In reply to: [Custom Post Type UI] Custom Taxonomies show as tags not categoriesDAP! That was it. Thanks!
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] Fatal errorThanks!
Yeah, I went through the same procedure of re-downloading the plugin files again and it was still throwing the error.
randdusing fix worked for me.
Forum: Fixing WordPress
In reply to: Cannot activate plugins after 3.5.2 updateSame thing.
I just tried it with the Yoast SEO Plugin and it wouldn’t activate.
Forum: Plugins
In reply to: [Portfolio Slideshow] Photo Slideshow navgation buttons wont workjQuery should already be installed, or the URL to the jQuery library should be in your theme already.
There should be a setting within your functions.php file within your theme that points to a jQuery URL.
From inspecting your site with Chrome it appears that there are some URL’s to some JavaScript libaraies that appear to be broken/missing:
https://eatfeastnyc.com/wp-content/themes/cloriato-lite/js/slides.min.jquery.js?ver=3.5.1
https://eatfeastnyc.com/scripts/updatepage.js
Unfortunately, since I am not familiar with your current setup or your site, I cannot really say if this it the cause for the slider not working correctly. It could be that these URL to these javascript libraries are missing, but it could be conflict with another plugin as well.
My suggestion would be to first, clear these error with the missing libraries and see if that resolves the issue. If the thumbnails are still not working, then I would then check with the Google Chrome inspector under the console tab and see if there are any other errors that are being triggered. If so, then you might have a conflict with a couple plugins.
That’s the best advice I can give you right now.
Forum: Plugins
In reply to: [Portfolio Slideshow] Thumbnails not aligning properlyLooks like in the CSS there is a float:left for the image thumbnails.
I was messing around with it and I commented it out and that looked like it fixed the issue.
You’ll have to update your CSS file in order to have all the images align properly. I’m not on the team at all so I can’t really vouch to say that this is an end-all be-all fix. But from what I can tell, that should technically “fix it”
Here’s the section of CSS code that I am talking about:
.slideshow-wrapper .pager img { opacity: .5; filter: alpha(opacity=50); border: none!important; padding: 0 10px 10px 0; margin: 0; /*float: left;*/ width: 75px; height: auto; }
I has to un-minify the CSS in order to see where it was, so you might have to do the same if needed.
Forum: Plugins
In reply to: [Portfolio Slideshow] Photo Slideshow navgation buttons wont workLooks like your theme isn’t pulling in jquery correctly.
I looked at it in Google chrome and went to the console tab and it was showing that couldn’t find the jquery resource.
Ahhhhh. Yeah, that makes sense. Well, the good thing is have a couple of test folders in there I’ll try it out on. Thanks for the input!
Thanks for getting back to me!
With the permissions thing is that the permissions are set correctly as you mention (755 and 644). But then when I try to change them (some plugins need full 777) within either Filezilla or even through cPanel I am unable to. It’s almost like I don’t have permission to change the permissions on any of the files that were un-packaged by the plugin. I was also trying to make some changes to a template file and then I couldn’t overwrite the file.
I am able to edit the permissions on any other folder outside of the folder that duplicator extracted the wordpress site to.
I have a feeling that it might have to be something with a possible PHP configuration and my web host , but I figured that I’d throw the question out there and see if there was anyone else that may know or if there was any other insight.
Forum: Fixing WordPress
In reply to: get_post_meta just returns ArrayWill do. Thanks!
Forum: Fixing WordPress
In reply to: get_post_meta just returns ArrayAh, ok.
Just figured that’s where it needed to be changed to look for pages instead of posts. But I did that and it still seems to be working.
Again, thanks for your help!
Forum: Fixing WordPress
In reply to: get_post_meta just returns ArrayWell, son of a B.
I changed this:
function get_meta_values( $key = '', $type = 'post', $status = 'publish' )
to $type=’page”
and it seems to be working now.
Thanks for your help! I have a better understanding of this now and I hope this comes in handy to anyone else in the future!
Forum: Fixing WordPress
In reply to: get_post_meta just returns ArrayThe custom field is in 2 pages. The name of the field is multiedit_Info and the value of that field has HTML code that is inserted by another plugin.
I guess thats what I am getting confused on since I am not sure what is what. And I am basically trying to get the values of the field (in this case HTML) to display on another page.
So basically if I have 3 pages all with the same custom field of multiedit_Info, but the value of each multiedit_Info is different on each page. Then I am trying to get those values to output on a single page.