wearebase
Forum Replies Created
-
Forum: Plugins
In reply to: [WCS QR Code Generator] [Plugin: WCS QR Code Generator] has_cap bugAAAAAAAAAAAAH man.
Thanks for the heads up!
– MattForum: Plugins
In reply to: [WCS QR Code Generator] [Plugin: WCS QR Code Generator] has_cap bugChange line 423 in wcs-qr-code-generator.php to:
add_menu_page('WCS-QR-Code', 'WCS-QR-Code', 'edit_pages', 'wcsp_qrc_options', 'wcsp_qrc_options', $wcs_qrc_icon_url);
This will remove the warning.
Forum: Plugins
In reply to: [Contact Form 7] jQuery Form get's 2013.01.18 added to it so it 404'sHi,
Please ignore – turned out to be an issue with another plugin that rewrites all JS and CSS on the page to avoid caching.
It’s wasn’t clever enough to take into account the ‘-‘.
Thanks,
– MattForum: Plugins
In reply to: [Tweet Blender] Request :: More options controls for template functionHi kirilln,
Did you ever make any progress with this? ??
Thanks!
– MattForum: Plugins
In reply to: DDSlider not working properly for WP 3.2No Probs.
Good luck,
– MattForum: Plugins
In reply to: DDSlider not working properly for WP 3.2Hi Corey,
Balls! – I made a mistake, sorry… I can see you implimented what I told, unfortunately it should be..
#page-content #DDSliderCont ul li { padding-left: 0; }
Sorry bud, I was responding via my phone while being bored in a meeting.
Regarding your second issue, again it’s down to CSS. The div generated by ddslider is floated left (#DDSliderCont) to make parts of the slider work properly, your content is not floated or wrapped as wordpress wont apply those kind of elements to your content by default.
You would be much better off creating a template page for this gallery page and then placing the slider in the template used for this page using the php tags, something like…
<?php if(function_exists('displayDDSlider')) { print displayDDSlider(array('name'=> 'MY_GALLERY_NAME')); } ?>
You can then place the slider outside the content div and the two shouldn’t effect each other as much.
Hope that helps!
– Matt
Forum: Plugins
In reply to: DDSlider not working properly for WP 3.2Corey,
This is a separate issue and should really be in a new message.
Your issue is CSS related and can resolved by changeing some of your theme code.
The Identifier in question is on line 1017 in styles.css
#page-content ul li, .post-content ul li { background: url("images/marker.png") no-repeat scroll left 5px transparent; list-style-type: none; padding-left: 20px; }
You need to either remove this 20px – this will most likely ruin you main theme OR write something like…
#page-content #DDSliderCont ul li { padding-left: 20px; }
and chuck it in your styles.css file.
Hope this helps,
– MattForum: Plugins
In reply to: DDSlider not working properly for WP 3.2If you haven’t already worked this out..
In your dashboard, go to ‘ddslider’ tab – should near the bottom of all your menu’s, then click ‘general options’ find the slider you want and change the default to the transition you want.
Hope that helps.
– Matt
Forum: Plugins
In reply to: [Tweet Blender] class-json errorKirill,
Same here man, it seem rather upset with the new version;
Warning: require_once(D:\xampp\htdocs\live\bca/wp-includes/class-json.php) [function.require-once]: failed to open stream: No such file or directory in D:\xampp\htdocs\live\bca\wp-content\plugins\tweet-blender\lib\lib.php on line 509
Have rolled back and will hold out updating any further sites.
Thanks Kirill,
– Matt
Forum: Plugins
In reply to: [Tweet Blender] Request :: More options controls for template functionHi Kirilln,
Awesome news!
I guess all options would be the ultimate as I can really predict the future of what I may need, or others requirements.
Stab in the dark suggest;
Show the photo from the author for each tweet
Show username from the author for each tweet
Show tweet source for each tweet
Hide replies
Show only replies
Hide tweets that come from different users but have exactly the same text
Hide mentions of users, only show tweets from users themselves
Do not use search API for screen names
Link http & https URLs insde tweet text
Link @screenname inside tweet text
Link #hashtags insde tweet textAny or all of the above I’m sure myself and other would find more than helpful!
Thanks Bud!
– Matt
Forum: Installing WordPress
In reply to: Problem with auto update – No FTP accessThe company is pretty big, this is one of their own servers. FTP is super unsecure, which is why we’d usually use SSH but none of these are options because the IT dept are a bunch of grassholes, only allowing us access to the webmin interface. I just wondered if there was ann apache module missing or something that would allow me to grab and install the files. Curl and other standard modules are installed and configured.
Changing host is not an option. ??
Forum: Plugins
In reply to: [Tweet Blender] [Plugin: Tweet Blender] Showing other user's tweets?Hi,
Thanks for the prompt response.
I turned caching off on all my sites that are affected and havent seen any more problems, with luck it was just that twitter’s search was having some serious issues – not uncommon.
Thanks for your help, look forward to the new version.
Best,
MattHi oneprcnt,
I am mental busy at present, this is not something I would be able to help with ??
Sorry Bud,
Best,
MattForum: Plugins
In reply to: [Social Photo Fetcher] [Plugin: Facebook Photo Fetcher] WP3Hi Justin,
Thanks, I solved my issues and able to happily stream my photos now.
Thanks on your hard work in making this plugin.
Best,
MattHi,
Sorry if this seems a silly question, but I am having the same issue.
I have a plugin I wrote which swaps the css for an accessibility friendly version but the page reloads with the cached version of the site so the wrong css.
It swaps the css with the code below:
<?php if ($_COOKIE["style"] == "on" ) { accessible style sheet } else { normal style sheet } ?>
I know i need to add an argument to say dont load cached content if this cookie is set, in this instance where do I define the constant? and how?
Thanks for your help,
Best,
Matt