joesmalley
Forum Replies Created
-
Also, it would be helpful if a CSS class could be added to parent categories with children.
PS. I got around this by deleting the SagePay plugin from my plugins folder, activating WC plugin, then re-upload and activate SagePay.
Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] Show draft postsThat option would be very useful for me. Also as a suggestion, I think even when that option is turned off, it should say “DRAFT” next to any draft post title.
I just sent you an email with admin login details.
Still having problems with v3.3.2 I’m afraid, only now I’m getting “The page isn’t redirecting properly – Firefox has detected that the server is redirecting the request for this address in a way that will never complete.” On the Twitter site.
I’m having the same problem as askolo/TDRock. I get redirected to my site’s wp login screen after authorising Twitter. Am using v.3.2.9 and this happens even if I disable all my site’s other plugins.
Solved! I had this in my theme’s functions.php file:
add_theme_support(‘post-thumbnails’, array(‘post’, ‘page’));And I changed it to:
add_theme_support(‘post-thumbnails’, array(‘post’, ‘page’, ‘tribe_events’));
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] VariationsTry this, it worked for me: Delete your variations and update the product. You can now see the product price and sale price in the right-hand column. Leave the product price as-is and set the sale price to zero and update the product. Now re-add your variations.
Forum: Fixing WordPress
In reply to: Cannot exclude category from query_posts()I found a way around this by adding
$query_string = remove_query_arg('pagename');
between the two lines above. But I think there’s definitely a bug here, the pagename and cat parameters aren’t working together as they used to.
I’m getting this error too. The problem is, if the error appears on my site, the right of the page doesn’t show and the layout breaks, making it look really bad!!
The code needs to be re-written so it doesn’t show an error if Twitter doesn’t return the RRS.
Hi Tobias,
This problem is still causing me problems on a website, I wondered if there’s a work-around for it? Or if you could be at a stage to tackle it now?
It would really be beneficial to limit editing rows to say, 50 rows at a time, with pagination to edit the other rows.
Same – I can get output from Twitter user ‘charliesheen’ but as soon as I change the user to ‘divorcesupportg’ I don’t get any output, even though there are tweets to show. I’ve tried lots of options from https://pleer.co.uk/wordpress/plugins/wp-twitter-feed.
Is this a bug?
Forum: Plugins
In reply to: [Sociable] sociable_html() function no longer in Sociable for WordPress 3.0 ?In my WP template where I wanted the sociable links to appear (this method allows you to specify the exact position, not just the default end of post)
Forum: Plugins
In reply to: [Sociable] sociable_html() function no longer in Sociable for WordPress 3.0 ?I took a further look into the code, seems it’s been changed to use classes. I fixed by changing this:
<?php if(function_exists('sociable_html')) echo sociable_html(); ?>
to:
<?php if(method_exists($sociable,'get_links')) echo $sociable->get_links(); ?>
This should be documented somewhere.
Forum: Plugins
In reply to: [Sociable] [Plugin: Sociable] How to use manually code onlyMake sure you don’t have any of the options ticked in the ‘Position’ section of the Sociable settings page
Forum: Plugins
In reply to: wp-table-reloaded: Search functionHere is some code I added to controller-frontend.php to allow pre-searching by a GET variable in the URL. Someone may find it useful:
Line 564:
if(isset($_GET[‘ts’])){
$parameters[‘oSearch’] = ‘”oSearch”: {“sSearch”: “‘.$_GET[‘ts’].'”}’;
}And access the pre-searched table like:
https://www.website.com/wordpress/table-page/?ts=Search term