CK Hicks
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Debug ERROR messageThe get_base_path() function needs to be run statically with newer versions of PHP – edit line 123 of gfcptaddon.php as follows:
protected static function get_base_path(){
Forum: Plugins
In reply to: [WP Favorite Posts] cannot edit plugin php fileSounds like you edited something unnecessarily – why not use the admin panel? (Settings > Favorite Posts)
Forum: Plugins
In reply to: [WP Favorite Posts] [Plugin: WP Favorite Posts] Favorite list on profile pageYou’ll need to pull entries based on the user id – I’m working on a solution for this right now on a client site and will post back when I get it working. I’m planning to pass the user id through
wpfp_get_users_favorites
and go from there.Don’t add that to user-edit.php though, you need to make an author page template and add it there for people to see on the front-end.
Forum: Fixing WordPress
In reply to: Home page settingTake a look at this article on changing your home/site URL via functions.php:
https://codex.www.ads-software.com/Changing_The_Site_URL#Edit_functions.php
That will allow you to log back in and correct the edit you made. Otherwise, you’d have to make that edit in the database directly (via phpMyAdmin, etc).
Hope it helps!
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Only Tabs Showing on Front-EndHmm, somehow this slipped under the radar – my apologies! I was able to get this working with a bit of tweaking. Keep up the great work.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] [Plugin: BackWPup] Thank youSame here! Amazingly well put together – donating now. Keep up the great work.
Fantastic, thanks much!
Forum: Hacks
In reply to: Loading Mobile/Desktop Headers DynamicallyQuick note: The idea here is to bypass the need for specific hacks and styles on mobile vs. desktop environments, because the header will only have the necessary scripts for each platform. (I’m using both the mobile/desktop version of HTML5 Boilerplate for testing purposes.) The main idea is only showin the users what they NEED to see, so we can keep it clean and speedy.