benzine
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Possible to hide fields until option is seleted?@golgothus. This is the solution that BunnyBomb provided to us here https://www.ads-software.com/support/topic/plugin-contact-form-7-this-is-how-to-showhide-fields-with-jquery/page/2?replies=2
But what if I have multiple selection in the dropdown all showing different results? Have someone succeeded in finding the solution? A member came up with this solution:
if ($("#fault").val() == "Waste Collections" || $("#fault").val() == "Recycling" || $("#fault").val() == "Parking" || $("#fault").val() == "Planning")
But this isn’t working on my end!
ANYONE?
Forum: Fixing WordPress
In reply to: Custom Profile Fields not ShowingI have the same problem.
ANYONE?
Forum: Plugins
In reply to: [Pretty file links] [Plugin: Pretty file links] Preloader???Hi James
Ok James, thanks a lot for your input. Hope that this will, in the future, be possible.
Forum: Plugins
In reply to: [WordPress News Ticker] [Plugin: WordPress News Ticker] News Ticker Placement+1…is there a shortcode to integrate this in a post or page?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] What's wrong with my form???Thankfully, I fixed the problem. My form i working perfectly now, carrying all values from the fields to the selected email from the pipe values.
If you need help, please be more precise!
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] About the Pipe featureThis is considered classified <:))-
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] About the Pipe featureWow, was it so simple…thanks a million mate.
This is considered classified <:))-
I ended up using something like https://www.picklewagon.com/wordpress/new-user-approve/ which solves my problem.
I think it doesn’t work with WP 3.4.2 and BP 1.6.1!!!
Hey this thing doesn’t work anymore on the version of Wp (3.4.2) and Buddypress 1.6.1!!!
Can anyone confirms if this is the case???
Forum: Fixing WordPress
In reply to: Portfolio zoom slider and wordpressresult is here https://www.infografixlab.com
Forum: Fixing WordPress
In reply to: Issues with 3.2.1 and Firefox 5AM also having the same problem. First, I thought it was Wp but when I downgraded the problem still persists. I’ve also manipulated wp_config.php but to no avail.
I’m also waiting for an answer if someone can help
Forum: Fixing WordPress
In reply to: Adding some lines of javascript just above the close body tag???this is the first thing I did but when the file renders in the browser, it’s all at the top when you view the source!!!
Forum: Themes and Templates
In reply to: One and Two columns posts on the same pageAm using this piece of code to display my custom posts on the homepage
add_filter( ‘pre_get_posts’, ‘my_get_posts’ );
function my_get_posts( $query ) {
if ( is_home() && false == $query->query_vars[‘suppress_filters’] )
$query->set( ‘post_type’, array( ‘post’, ‘page’, ‘album’, ‘movie’, ‘quote’, ‘attachment’ ) );return $query;
}When I use this piece of code in WP 3.03, it displays perfectly on the homepage. But when I’m assigning a page template for the custom post type to a page is displays all the custom posts like on the homepage. Is there a way to suppress that function allowing the display of selected custom posts only on the homepage while the other pages display only the assigned page template?
Anyone
Forum: Themes and Templates
In reply to: One and Two columns posts on the same pageI figured it out now I need to get those custom posts styled on my homepage!
Can you help me on this one pls?