stebesplace
Forum Replies Created
-
Forum: Plugins
In reply to: [My YouTube Channel] Lightbox not working?Well that worked! Thanks for taking a look.
Forum: Plugins
In reply to: [My YouTube Channel] Lightbox not working?Downloaded and installed, still not showing the lightbox. Here’s a sample page where in the sidebar I’ve put the widget…
https://www.christini.com/awd-technology/about-the-technology
It’s in there as a class, and it appears like all of the scripts are loading up in the header and footer.
I am seeing this error in the console:
TypeError: undefined is not a function (evaluating 'jQuery(window).on('load',function(){ytc_init_MPAU();})')
Forum: Fixing WordPress
In reply to: Move custom meta box above editorSo I attempted to get this working, and maybe I’m missing something, but I wasn’t successful. After plugging in this block of code into my functions.php, I wasn’t sure what else to do in order to get this working. I added my custom meta box, played around with the priorities, etc., and nothing. What am I missing? Here is the sample code from my meta box:
function df_press_about1_html() { global $post; $about1title = get_post_meta($post->ID, '_df_press_about1title', true); echo '<label>About the 3rd party title</label><input type="text" name="_df_press_about1title" value="' . $about1title . '" class="widefat" />'; $about1body = get_post_meta($post->ID, '_df_press_about1body', true); echo '<label>About the 3rd party provider content here</label><textarea class="wp-editor-area" rows="7" cols="95" name="_df_press_about1body">"' . $about1body . '"</textarea>'; }
And this is the meta box add:
add_meta_box('df_press_about1', 'About 3rd Party', 'df_press_about1_html', 'press', 'normal', 'default');
I have more boxes than this, but this one gets it in there. I’ve adjusted the normal, default values to no avail, and have reverted them back to this.
Let me know if you guys have any ideas.
Aaron,
I purchased the pro version yesterday, got it all up and running, worked great for personal walls, not so much for pages. I just updated to the latest version, and it worked for pages! Looks to be all good over here, hope Maja can get the same results.
Thanks man!
Right on!
Ha, well you know ?? Glad to see things are still rolling along here for you!
I’ve got a client who needs this functionality (based on what I read from your site), so was anxious to see how things were going.
Very very soon? It’s been 6 months?
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] General feature requestsI think this plugin would benefit greatly with a “points” based integration. So as a user completed a survey, while logged in for example, they accrue points. Thoughts?
Forum: Plugins
In reply to: Portfolio Slideshow Random OrderWell at first I wasn’t able to get this working, then found a cache issue on my side of things. The random: 1 works as part of the cycle plugin functionality with jquery. All good here!
Forum: Fixing WordPress
In reply to: Attach image to a post gallery from existing media galleryThis seems to be a recurring theme here. I have the same question, and I believe it’s a limitation in the WP software to allow about.
https://en.forums.wordpress.com/topic/how-to-add-an-existing-image-to-an-existing-gallery
Goes into it a bit, but I’m still looking here as well. As of 3.1, I can’t see a method for doing this in the Media library however, it should exist. Perhaps a plugin is available. If I find anything, I’ll let you know.
Forum: Fixing WordPress
In reply to: Two different "Password" entry pages?I figured it out. Adding a conditional tag (if is_page()) resolved it with an elseif for everything else (posts).
Forum: Plugins
In reply to: [Plugin: Members Only] Bypassed by adding variable to urlHami, that last line:
add_action(‘template_redirect’, ‘members_only’);
Worked when I put it in the plugin and re-uploaded it. You should make this change to the current release (as of today, April 4, 2008).
Thanks!