ddpweb
Forum Replies Created
-
Thanks so much for this post!
I’ve made the update to the file, but I’m still finding that the code doesn’t get loaded on the page.
I had done a work-around in the interim, by using the output from the plugin, and just loading it with conditions in the footer for: pages, single, search and error. It works, but I’d prefer to control it from the dashboard.
So for testing I’ve removed that static code in the footer, made this update to the plugin file and loaded it, set an image on my page, and then tested. The code doesn’t load unless I select the slideshow option for pages in the main settings (but then it just loads the slideshow, which I don’t want. I just want a background photo).
Is that footer code loading for you when you use the ‘custom background image’ option from the page itself?
Also, is it supposed to use the image ID in that field, or the path to the image?
Thanks for any help on this!
Forum: Plugins
In reply to: [Twitter Feed] Tweets feed box not displayingI had a twitter feed script that also stopped working all of a sudden. It may have to do with Twitter updating their API.
http://mashable.com/2012/08/16/twitter-api-big-changes/
I haven’t tested this plugin yet. But was able to get this one to work
Forum: Plugins
In reply to: [SP Project & Document Manager] Groupsok
Forum: Plugins
In reply to: [SP Project & Document Manager] Groupshello!
Using the latest premium plugin, and WP 3.42 (haven’t upgraded yet)- I’ve just seen that Groups is available, and it was a question I have about how to create a set of projects that multiple users can see. it looks like this will allow me to do that.
But when I create a new group. It does not display in the list like the other panels. It just vanishes. Not loading for some reason.
Forum: Plugins
In reply to: [Event Calendar] Responsive FunctionI love this event calendar! It’s really well done, and it’s easy for my clients to use. Really nice work!
I just tested on iPad, and the calendar isn’t showing up at all for some reason. Do you know if there is a work around for this? Or the CSS I need to add to make it display?
I also noticed that the ajax functionality was not functioning to open the event in the lightbox in iPad as well. Any thoughts?
Just as a sidenote. I’ve seen this memory issue recently on a couple different WP sites.
There seems to be an indication that in my case, it has something to do with the theme that I’m using that requires the max PHP limit to be increased.
Certain plugins like Pinterest, and even the WPPaginate plugins were both getting this error once the database got to be a larger size.
I think it has something to do with how this particular theme has been programmed which is intensive to the database, and so require additional space to function with additional plugins…
Forum: Fixing WordPress
In reply to: Removing default sidebar widget areas in twentyeleven child themeI’m still looking for the code on that Default sidebar…
but you can register as many of these as you need, simply by using code like this in that function.
You don’t have to use the sidebar id number. These are primarily for the footer block.
So you can just use something like this:
register_sidebar( array( 'name' => __( 'Category Sidebar', 'twentyeleven' ), 'id' => 'sidebar-cat', 'description' => __( 'The sidebar is for category pages', 'twentyeleven' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', ) );and then call the Category Sidebar in your template, like this
<?php if ( ! dynamic_sidebar( 'sidebar-cat' ) ) : ?> <?php endif; // end sidebar widget area ?>thank you!
I’m curious if this is still working after Facebook rolled out their latest generation. From what I have read, and found, FB has removed this feature.
I wish they hadn’t. But now I see no way of accessing the RSS feed in the notes area. Is there a work around for this?
Here’s an excerpt from the Facebook help center:
—————————————————————————————–Why can I no longer import blog posts from my website to my Page’s notes?
We want you to connect with your fans in the most effective ways possible. That’s why as of September 30th you’ll no longer be able to automatically import posts from your website to your Page notes. The best way to get people to interact with your content is to give them insight into the links you share on your Wall by adding personal comments and responding to feedback from fans.We’re focused on creating even better tools for Pages. Look for announcements soon.
—————————————————————————————–
I was able to hide the duplicate by creating my own CSS specific to the page ID.
I also modified the file: wp-customer-reviews.php / by replacing the <hr /> at the end of each review item with my own CSS <div class=”review-sep”></div> – so I could hide it.
.page-id-14 #page-content .item hr, .page-id-14 #page-content .hreview, div.review-sep { display: none; visibility:hidden; }Great Plugin! But I’m seeing duplicate buttons to the review form – what is also interesting, is that when I add this shortcode to the text widget so I can see the reviews in the sidebar, it duplicates the reviews on the bottom of the page, AND shows the review form button. Weird. Is there a fix for this? It’s a basic install.
Forum: Plugins
In reply to: Membership/Directory Plugins neededHello! I’m looking for very similar things for a site rebuild. There is so much information it’s overwhelming. It’s been a while since you posted this. I’d love to know what you found.
I came across even one article that says DON’T use WP for a paid membership site. And here’s why: http://www.howtospoter.com/money-making/internet-marketing/opinion-why-wordpress-should-never-be-used-as-membership-management-system
This guy recommends keeping the membership site separate. Here are some alternatives:
http://www.easymemberpro.com
http://www.membersgear.com/I’m still looking for the best solution. In my case, I don’t need the payment system and protected content, though it could come in handy in the future. Seems many membership plugins have the management and payment features, but not the directory/searching features. I just need good membership profile page management, with custom fieds/ profile photo, and a search directory organized by member categories.
Here’s what I’ve identified so far.
Reviews
http://wplift.com/create-a-membership-site-with-wordpress-membership-pluginsPaid Memberships
http://www.tipsandtricks-hq.com/wordpress-emember-easy-to-use-wordpress-membership-plugin-1706
http://member.wishlistproducts.com/
http://premium.wpmudev.org/project/membership
http://smartmediapro.com/products-and-services/
List and Search Members Plugin
http://wordpress.org/extend/plugins/members-list/Custom code modifications (still looking into this possibility)
http://www.likoma.com/setting-up-a-memberuser-directory-in-wordpress/Forum: Plugins
In reply to: [FormBuilder] [Plugin: FormBuilder] You're on your own!Thanks for the post. I’m just realizing that it’s not saving the data in the database. It will send the email, but not retain the date.
I did find an alternate database contact form.
Forum: Plugins
In reply to: [Recent Posts Slider] [Plugin: Recent Posts Slider] Images Not ShowingThank you monpelaud!
That worked perfectly!
I just had to make sure that the quotations were the ‘tic’ marks and not the curly quotes.
I also noticed that this plugin wasn’t loading the photos until I reset the ‘featured photo’ in the Post area. Then it worked!
I found that you could get it to work by using the template tag for the short codes:
eg:
<?php echo do_shortcode('[shortcode option1="value1" option2="value2"]'); ?>like this:
<?php echo do_shortcode('[jQuery Slider]'); ?>