Gabe462
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Member + WP User Frontend - Addon] Confusing Posts & My PostsGenerally a remove_filter() in functions.php or a settings plugin is a good practice to use as opposed to modifying a plugin. Any reason why that wouldn’t work in this case?
Forum: Plugins
In reply to: [Query Monitor] QM not creating menuI did try disabling all other plugins on my local site. I just did again while also switching between twenty- themes.
They’re pretty not common, other than WP 4.2.2. Two are on DreamHost under different user accounts, one is running on my Macbook.
Forum: Fixing WordPress
In reply to: Can't change themeThanks for clarifying my response 🙂
Forum: Fixing WordPress
In reply to: Cannot Install Theme – Requires FTP accessBy the “direct” thing do you mean that you’ve already tried installing the theme from inside WordPress?
https://codex.wordpress.org/Using_Themes#Adding_New_Themes_using_the_Administration_Panels
Forum: Fixing WordPress
In reply to: My sites are blank or can't launch after v4.1.2 upgradeDo you have anything in the wp-content/mu-plugins?
Forum: Fixing WordPress
In reply to: Can't change themeHere’s one possible solution that’s come up before. Did you set your site URL?
Forum: Fixing WordPress
In reply to: how to clean up your WP backend from plugin debris?If I was about to embark on your project, I’d start with “wordpress database cleanup”.
I just did, and think this post would be a good starting place:
http://www.elegantthemes.com/blog/tips-tricks/cleaning-up-your-wordpress-database-to-optimize-your-websites-performanceForum: Fixing WordPress
In reply to: how to clean up your WP backend from plugin debris?If you’ve deleted a plugin, sometimes it will remove it’s DB content. Names escape me, but there are plugins that can help.
With a few exceptions like caching and backup plugins, all plugin files are contained in their respective folders. Deleting the plugin deletes the folder and the files in it. It’s rare for residual files- this isn’t Windows 😉
Forum: Plugins
In reply to: [Simple Lightbox] Jetpack Photon breaks simple lightboxThank you.
Forum: Plugins
In reply to: [wpRTC - WebRTC for WordPress] "stop" buttonNot quite; I want to end the video stream. I want both the ability to stop on command, and timeout.
Forum: Plugins
In reply to: [Force Login] whitelist wp_registration_url() ?if( !is_user_logged_in() && !in_array( v_getUrl(), array( wp_login_url(), wp_registration_url(), wp_lostpassword_url() )good one @jabdo
Forum: Plugins
In reply to: [Ajaxify Wordpress Site(AWS)] Site Navigation not workingI had this same issue. I first tried changing .on to .live, which worked nicely.
I then tried switching back to .on and enqueuing jquery 2.1.0 but experience the same problem again.
I’m doing this testing on a fresh WP install with twentythirteen and no other plugins.Good work so far, thanks!
Thanks for the pointer. I’m wondering if this is the wrong hook, because while I’ve set
add_filter( 'student_field_value', 'my_combine_fields', 10, 5);my test is true:
has_filter( 'student_field_value', 'my_combine_fields' ) )and my echo never prints
function my_combine_fields( $value, $field, $attributes, $row, $obj ) { echo "<!-- my_combine_fields() -->"; if ( 'first_name' == $field ) { $value .= ' ' . $row[ 'last_name' ]; } return $value; }Any thoughts? Thanks much
OK, my first reply was inadequate.
What is ‘yourpod_field_value’? Are you saying that there is a hook created for every pod named ‘nameofpod_field_value’? I’ve not yet found a doc page for this…
Can you elaborate? I want to join fields first_name and last_name. How could I make them appear in the same (first) column?