Dave Parker
Forum Replies Created
-
Forum: Plugins
In reply to: [Instagram image gallery] Settings not savingI had this same issue. What I did was remove the plugin, reinstall it, input the settings and save once. When the page reloaded the settings were not set correctly but the widget works as I first set up the settings.
Definitely something they should fix, though! Otherwise great plugin.
Forum: Plugins
In reply to: [Appointments] Require_once(service/Google_Utils.php)Hi WPMU DEV,
I have got it to work based on these last instructions! It was a little bit different, though:
I replaced line 20 with this code:
require_once plugin_dir_path( __FILE__ )."Google_Utils.php";
And duplicated the “Google_Utils.php” file into /gcal/auth/
Then I got similar errors in the /gcal/io/ folder so I changed lines 18-20 in Google_IO.php to
require_once plugin_dir_path( __FILE__ ).'Google_HttpRequest.php'; require_once plugin_dir_path( __FILE__ ).'Google_CurlIO.php'; require_once plugin_dir_path( __FILE__ ).'Google_REST.php';
And it worked!
Forum: Plugins
In reply to: [Appointments] Require_once(service/Google_Utils.php)Hi David,
I’ve tried setting the appointments folder and everything in it to 777 just to test and it still is causing the same error.
Something to note: I have tried this plugin on different websites on the same server and sometimes it has the error and sometimes it doesn’t.
Thanks!
Forum: Plugins
In reply to: [Appointments] Require_once(service/Google_Utils.php)Hi David,
I tried doing as you suggested but the error still is happening.
Here is a screenshot confirming the folder/file:
Thanks!
Forum: Plugins
In reply to: [Appointments] Require_once(service/Google_Utils.php)Hi WPMU DEV,
Thanks for the fast reply!
I tried deleting and reinstalling with the latest Appointments plugin (1.4.4) and still am experiencing this issue.
Forum: Plugins
In reply to: [Pinterest Pin It Button For Images] Not using the ALT text descriptionYes, I would really like this feature as well!
Forum: Plugins
In reply to: [CalPress Calendar] "Limit to" not workingI finally received a response to the ticket I opened regarding this issue, but it was not the one I was looking for:
“Yes, it is possible. There’s a settings in the widget area.”
:/
Forum: Plugins
In reply to: [CalPress Calendar] "Limit to" not workingThis project I am working on picked back up so I am exploring this issue again. I’ve contacted support but I wanted to update this post of what I’ve found out so far:
If you have the widget set to “Limit to:” AND have the “Show upcoming events” box checked, it will show ALL upcoming events from ALL categories regardless of “Limit to:”.
If you have the widget set to “Limit to:” and DO NOT have the “Show upcoming events” box checked, it will only show events from the “Limit to:” but ONLY for the current day.
What I am trying to do is display the next 10 upcoming events for ONLY 1 category regardless of date.
I’ll make another post when I hear back from CalPress.
Forum: Fixing WordPress
In reply to: Google Friend Connect quit workingI got it working for me.
I went to https://google.com/friendconnect then went to settings/advanced and realized that for “Advanced Options” -> “Alternative Addresses” had removed what I had in there and replaced it with some other weird stuff. I fixed that and now it works.
Forum: Fixing WordPress
In reply to: Google Friend Connect quit workingI’m having the same exact problem, any ideas??
Forum: Networking WordPress
In reply to: Cannot log into mapped siteHey Andrea,
I don’t know exactly how it worked, but so far everything seems to be working fine. I hope I don’t run into any issues down the road :O (although these extra sites I am doing are going to be very basic).
Thanks!
Dave
Forum: Networking WordPress
In reply to: Cannot log into mapped siteAh, I swear that always happens. I’ll sit and mess with something over and over and cannot find a solution, make a post, and then within minutes figure out my answer.
When I go to “Domains” in “Super Admin” I had to set the id to “2” (I was trying “1” because it doesn’t show any domains.. but I am assuming 1 is for my main site).
Thanks anyway!
Dave
Forum: Fixing WordPress
In reply to: wp_list_pages Parent AND Children PagesAwesome, it works perfect! Thanks Michael!
Forum: Fixing WordPress
In reply to: wp_list_pages Parent AND Children PagesThanks again Michael for the post!
However, this code works perfect when I am on a Child page, but when I am on the Parent page, it lists all of the pages (including other parent pages).. twice.
Also on the 3rd $children I changed “inclue” to “include” .
Dave
Forum: Fixing WordPress
In reply to: wp_list_pages Parent AND Children PagesBtw, I earlier put something with the_title to make the link.. but it would just show the current pages link. So when I clicked on a Child 1, it would show Child 1 and not Parent 1, if that makes sense lol.