redsundesign
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Custom post type pagination on homepage@guido07111975 – thank you so much!!!
After two days of frustration trying to get pagination working on the home page I found this post. The query I’d written worked on every page apart from the home page – adding
global $paged;
before the if/else statements solved it.Would be great if this could be added to the codex to help others: https://codex.www.ads-software.com/Pagination#Static_Front_Page
- This reply was modified 6 years, 11 months ago by redsundesign.
Forum: Plugins
In reply to: [Registrations for WooCommerce] Dates appearing as today’s dateI ended up using custom fields as I had a deadline to meet. I’ve disabled the Registrations plugin for now but will re-enable and post screenshots next time I’m working on the project.
Forum: Plugins
In reply to: [Post Types Order] Not working on Media grid viewMany thanks for getting back to me. Would be great to have the media grid view sortable if WP core is updated to allow for this.
Forum: Plugins
In reply to: [Video Thumbnails] Are Private Videos on Vimeo still supportedWhen I created the App in Vimeo it said the Default API Version is v3.2 with no obvious means to change it. On the App Authentication page there’s a message at the top: “The Vimeo API requires OAuth 2. Check out our authentication documentation for more information.”
There weren’t any other options to change the OAuth version. I downloaded the recent update to the plug-in, left out the
Access token secret
and all is working as expected now.Many thanks for your assitance.
Forum: Plugins
In reply to: [Video Thumbnails] Are Private Videos on Vimeo still supportedMany thanks for getting back to me.
I have 5 tabs: “General”, “Providers”, “Mass Actions”, “Debugging” and “Support”.
Under “Providers” I can see “Vimeo Settings”, “Tudou Settings” and “Google Drive Settings” but no other tabs.
Is this facility only available in the Pro version?
Forum: Plugins
In reply to: [YOP Poll] Poll answers not displayed in correct orderWe’re also noticing this on YOP Poll Pro.
Re-ordered answers and saved but the order is not retained in the admin area or front end. Seems to default to alphabetic ordering.
Really appreciate you taking the time to get back to me. The short term solution would be to encourage all three twitter accounts to start tweeting madly then.
Many thanks for developing the plug-in. I love the fact I can finally have some proper control over the CSS, and the use of Cycle 2 is great (my favourite jQuery slideshow plug-in ever).
Apologies re the profile image – this is now working. Tried the
official_format=1
previously but must have made a basic error.Both account names are spelled correctly and there’s no extra info in the source code. If I use them individually then there’s no problem at all.
The three accounts last tweeted on Nov 13, Nov 13 and Nov 19 – could that be the cause of the issue? They seem to have a flurry of Twitter activity and then go silent for a couple of weeks.
Is it possible to point me to the relevant lines in the source code so I could change the value for how far back we look for activity?
Doh – there’s a much simpler solution in my case.
I removed
controls="false"
from the shortcode and just popped the following into my style sheet:.vjs-control-bar {display:none!important;visibility:hidden!important;}
The control bar doesn’t show on desktop but the play button does show on mobile.
I have a video with autoplay=”true” and controls=”false”. Obviously it won’t autoplay on mobile devices. I have to click a couple of times on Android to play. Won’t play at all on iPad if controls=”false”.
I tried adding
$dataSetup['customControlsOnMobile'] = 'true';
(it was at line 195 on Video.js 4.5.0), but didn’t have any luck.Please could you let me know where the forked version is that forces controls on mobile?
Many thanks.
(WordPress 4.2.3, Video.js 4.5.0)
akv2 – thank you so much. I couldn’t figure out what was causing the issue with ACF in the admin area with relationship fields (and a few others – fields based on conditional values were showing all options) until I started turning off plug-ins and noticed that the acf/video.js combination was the culprit. That led me here to your solution – many thanks again…
Forum: Plugins
In reply to: [WP Cloudy] Support for Android devicesSincerest apologies. For some inexplicable reason the large SVG icon shown for today is now visible on my Android device. Cannot figure out why it wouldn’t show before.
Forum: Plugins
In reply to: [WP Cloudy] Support for Android devicesI can definitely see other examples of SVG on my Android device. Perhaps it could be an issue with the icon set being used? Could anyone else out there please try viewing their WP Cloudy output on an Android device and confirm whether there’s an issue. Many thanks…
Forum: Plugins
In reply to: [WP Cloudy] Support for Android devicesMany thanks for developing such a brilliant plug-in! I tried disabling CSS3 animations without any success.
Think it’s down to the flaky support for SVG on Android. According to https://caniuse.com/#feat=svg my Android 4.4.2 device should be able to display SVG. I tried the wpcloudy.com site just in case it was my CSS over-rides causing the issue but it seems to be a universal problem.
Forum: Plugins
In reply to: [Secure Custom Fields] post_id is being ignoredMust be having a bad day. The custom field is set to only show on the home page in the admin area so the lack of post_id in the “if” statement was causing the video to not show on other pages – doh. Apologies…
function show_vid() { if (get_field("video_url",2)): $vid_url = get_field("video_url",2); global $wp_embed; $post_embed = $wp_embed->run_shortcode('[embed]'.$vid_url.'[/embed]'); echo '<div class="vid-area">'.$post_embed.'</div>'; endif; }