micbow
Forum Replies Created
-
Forum: Plugins
In reply to: [Stream Video Player] Mobile view on Android is brokenYes I’ve got the same problem on my Samsung Note2 using the latest android version
Forum: Plugins
In reply to: [Category SEO Meta Tags] Woocommerce CategoriesOk, got the problem fixed. Just needed to select “product_cat” in the Custom Taxonomies Support on the setting page.
Finger trouble, ooops!Forum: Plugins
In reply to: [FireStorm Professional Real Estate Plugin] Search WidgetGreat work dramaeke & jhayt
Here’s what I did.
Commented out line 147 in define.php
Then I wanted to remove the country, state, city and price from the search widget so I could use my own custom fields.
To do this comment out lines 17 to 59 in widget_search.phpForum: Plugins
In reply to: [FireStorm Professional Real Estate Plugin] Search WidgetI’m not sure what others think but it seems a bit of an overkill to have a search capability for different countries.
I’d just be happy with being able to search for property based on type, price and local location all of which can be added by the webmaster using the custom fields you’ve already integrated into the plugin.
I think this plugin is better than the other options that are available but the search appears to be it’s Achilles heal. Based on what I’ve seen if you wanted to add a premium version with an integrated slider to display featured properties then I’d be happy to support it.
If people are happy to use the search widget as it is then keep it but why not add another simple search widget just based on custom fields?
This would be a quick fix that would work. As they say . . . . KISS
Forum: Plugins
In reply to: [FireStorm Professional Real Estate Plugin] Compatible SliderJust as an update to the previous.
I tried another theme and actually got the Soliloquy Lite Responsive Image Slider to work ok with this plugin.
Therefore for anyone using this plugin it is definitely a case of getting the right theme and plugin combinations correct for it to work.
The theme was SimpleMarketHi Igrimsley, You’re certainly not alone.
I’ve got the same problem. This is a good plugin but I can’t get the search to work either.
Even tried it on the previous version of WP. 3.4.2
Here’s my test site.
https://tx.cnect.me
Hopefully there will be a fix soon.
CheersForum: Plugins
In reply to: [WordPress Popup - Optin Revolution] READ THIS before you open a new thread!That’s the point. I didn’t want to add the video. The plugin did it itself.
Forum: Plugins
In reply to: [WordPress Popup - Optin Revolution] READ THIS before you open a new thread!Hi
Here’s some feedback!
Got the latest version of plugin and wordpress.
When I tested it in IE9 it took the Image from the popup and replaced it with a YouTube Video from my Home Page.
The line spacing between my bullet points in chrome was greater which then dropped them down the page and over my image.
Also when I added the name field to the form it disappeared and I couldn’t get it back until I reset the whole form which meant I lost all my mods.
Sounds like it’s got promise but I think you’ve got some work to do.
Best of luck with it!Forum: Fixing WordPress
In reply to: Stylesheet only for single pagesThank for that. I’ll give it a go.
Forum: Fixing WordPress
In reply to: Stylesheet only for single pagesHi, Thanks for the answer.
I don’t want to load the main css on the single pages at all as it has different values for the body{} css and contains all the css that is required for the single pages.
You see I want to make the single pages mobile friendly so having one stripped down stylesheet that is the only stylesheet that is loaded is what I am trying the achieve.
Therefore it looks as if adding functions to include or exclude stylesheets is what’s required?
How would you write the function to do this?
Thank You
Forum: Fixing WordPress
In reply to: unexpected T_STRING, expecting ',' or ';'Thanks esmi that worked spot on.
Much appreciatedForum: Fixing WordPress
In reply to: unexpected T_STRING, expecting ',' or ';'Here’s the code here
<?php if ( get_post_meta($post->ID, 'phone_number', true)) { echo '<a href="tel:<?php get_post_meta($post->ID, 'phone_number', true); ?>" ><div class="alcentre">Tap <?php get_post_meta($post->ID, "phone_number", true); ?> to Call</div></a>'; } ?>
Forum: Fixing WordPress
In reply to: unexpected T_STRING, expecting ',' or ';'I’m having trouble adding the code to the it keeps changing it standby
Forum: Hacks
In reply to: Group common values of custom fieldHi
I’m after some help please with just one line of this code. (line 1 ? goes in single.php)
Basically what it does is list links (with titles) into a table for all the posts created by the “author” of the post in question.
What I’d like to do is change it from the post author to a Custom Field I’ve created called “business” and group all posts that have the same/common value (for the custom field “business”) as the post page on which they are displayed.
I’m pretty sure it’s just line 1 that needs to be changed
1 <?php $i=1; $posts = query_posts(‘caller_get_posts=1&author=’.$post->post_author.’&post_type=post&post_status=publish&orderby=post_date&order=DESC’); foreach($posts as $post) { ?>
2 <tr <?php if($i%2){ ?>class=”odd”<?php } ?>>
3 <td>” rel=”nofollow” ><?php echo $post->post_title; ?></td>
4 <td><?php echo get_the_date(); ?></td>
5 </tr>
6 <?php $i++; }} ?>
7 </tbody>Thanks in advance
Forum: Fixing WordPress
In reply to: if Statement yes or noExcellent!
That fixed it.
Thank you very much for your help. Cheers