btees
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Related Posts and Products (WRI)] WRI affecting Archive Page LayoutWhere in the pro version is this?
Forum: Plugins
In reply to: [Contact Form 7] Integrate facebook pixel eventI’m having this same issue
Forum: Plugins
In reply to: [Contact Form 7] Tracking submits with Facebook PixelI’m looking for the answer to this too.
Forum: Plugins
In reply to: [Contact Form 7] Facebook tracking pixelAnyone have anything on this?
- This reply was modified 9 years, 4 months ago by btees.
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Variation images problemI came here looking for a solution to this too.
Any updates on this?
Forum: Plugins
In reply to: [Contact Form 7] All messages showing in one conversation in gmailThe subject field isn’t filled in by the user. The messages would be about specific subjects, so we don’t need the user to fill that in. Don’t want to add more steps than we need.
We do require a phone number though.
So my current solution is [your-name] <[tel]@mysite.com>
See any problem with that?
Ok, is there a file I can edit somewhere to change this?
Hi Maria,
Thanks for the reply.
What I’m talking about is the part on the single property page that says “
Numbers only. Currency.” on Price or “Meta description.” on Lease Terms.I want to clarify these and I want to add similar to my custom attributes
Forum: Plugins
In reply to: [GC Social Wall] Breaks backend functionality of many other pluginsHi Aurelie,
I’ve just switched to this:
http://codecanyon.net/item/wordpress-social-stream/2201708It’s really great, does exactly what I want, etc. it’s $19, but to me it’s gonna be really worth it when I implement it
Forum: Plugins
In reply to: [GC Social Wall] Inconsistent Timestamps & Broken Img tagsHi katana_one,
Did you ever get this sorted?
My temporary fix has been to go into the pluigin php and remove the seconds and minutes from it’s time output altogether. So it’s smallest unit is days (I had to add the “s” also as it only said day.
It’s not ideal either as it shows “posted days ago” on something posted today. As in there’s a blank between posted and days.
But it still looks cleaner than telling users how many seconds ago something was posted.
Someone with a good grasp on javascript time stamps will likely be able to sort this for us.
Forum: Plugins
In reply to: [GC Social Wall] Plugin conflict with sliderThe problem appears to be a javascript contflict, specifically this part enqueued by the plugin:
wp_enqueue_script('gc_social_wall', GCLIB_URL.'/js/gc_social_wall.js', array('jquery'));It’s at line 119 of GCSocialWall.php
My stopgap solution was to make it so that this only loads on the page I have the social content on like so:
if(is_page(1678)){ wp_enqueue_script('gc_social_wall', GCLIB_URL.'/js/gc_social_wall.js', array('jquery'));}Here you’d replace 1678 with the id of the page your social wall is on
Of course this won’t help you if your slider is on the same page as your social wall but it’s a quick work around for me π
Hi Maxim,
Thanks for the response.
So I’ve added the following code to property-overview.php:
<li style="font-size: 0.8em;"><?php if( !empty( $property['property_type'] ) ): ?> <?php echo $property['property_type']; ?> <?php endif; ?></li>Which renders as “house_rental” what I want it to show is “House to Rent” Which is the type entered on the property types page that relates to the slug “house_rental”
Any ideas?
Thanks for the steer Maxim.
The code you posted output the list as just one li
The final code was:<?php echo '<ul class="styles">'; echo get_the_term_list( $property['ID'], 'property_feature', '<li>', '</li><li>', '</li>' ); echo '</ul>'; ?>Forum: Everything else WordPress
In reply to: Google map posts using meta valuesOh, and the printf is just for testing outputs