000000000
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Video embed not playing in Chrome on AndroidThanks, I think I figured it out in the end though.
Pretty sure it was because I had too many videos on the page. There were a few
<video>
elements hardcoded into the page template at the bottom… I removed these and then the embed seemed to work fine (so far!).Perhaps my phone has a limit to how many videos it can show at one time.
Forum: Developing with WordPress
In reply to: Exclude a parent page with get_pages()Ah I see ?? thank you!
Forum: Developing with WordPress
In reply to: Exclude a parent page with get_pages()Thanks but won’t that include p10 and exclude its sub-pages? I’m looking for the other way round.
Forum: Developing with WordPress
In reply to: Exclude a parent page with get_pages()How would that work any different to what I have already?
Forum: Developing with WordPress
In reply to: Exclude a parent page with get_pages()Thanks but I think that would only give me the subpages of p10, but without the other top-level pages?
Forum: Plugins
In reply to: [Contact Form 7] Disable redirectsManaged to fix this myself with the following (decided I wanted to change the anchor tag in the end):
// edit cf7 unit tag / anchor add_filter('wpcf7_form_action_url', 'remove_unit_tag'); function remove_unit_tag($url){ $remove_unit_tag = explode('#',$url); $new_url = $remove_unit_tag[0]; $new_url .= '#headline'; return $new_url; }
- This reply was modified 4 years, 5 months ago by 000000000.
Forum: Fixing WordPress
In reply to: Restricting access to specific pages to specific usersThanks, I found WP Private Content Plus when looking for client portals and that appears to work exactly as I need it ??
Forum: Everything else WordPress
In reply to: Can’t post in forumsAh I see it now… thanks for the help!
That is very hard to notice though, and also the forum listing page looks almost identical to the page before it — I almost dismissed it completely as I thought I was still on the ‘WordPress Support’ page
Forum: Plugins
In reply to: [Social Sharing Plugin - Sassy Social Share] Vertical layoutThanks
Having the standard bar display the icons on top of one another would be preferable in this instance, but horizontal will do too.
Forum: Plugins
In reply to: [The Events Calendar] 'eventDisplay' => 'all' — no longer workingah okay thanks, that code that I’ve used though, wont that give me all of the events?
It does seem a little odd to have to specify an end date 100 years in the future… seems a little cleaner to just specify only a start date on it’s own, provided that will work okay?
Forum: Plugins
In reply to: [The Events Calendar] 'eventDisplay' => 'all' — no longer workingI’ve managed to fix it with the following:
$args = array( 'posts_per_page' => 3, 'eventDisplay' => 'custom', 'start_date' => '2014-01-01 00:01' ); $events = tribe_get_events( $args );
I was thinking I needed an end date in there too. Is this the best way to achieve what I’m after? By setting the start date before the first event in order to display past and upcoming events?
Forum: Plugins
In reply to: [Jigoshop] Shipping CostsThanks, however I already appear to have Flat Rate Shipping enabled.
Just when I’m adding a product, I don’t see anywhere to specify anything related to shipping? Only things like SKU, Price, Weight etc
Forum: Themes and Templates
In reply to: Child Theme: Trouble Overriding CSS of ParentAh yes I did read that originally but it left me a little confused. I was wondering what the point would be in adding the parent CSS in functions.php seeing as the styles are already loaded anyway?
But now I think about it, is it saying that it will mean that the child theme CSS will be loaded *after* the parent sheet, and therefore overwriting its styles?
I’ll give that a go anyway.
Thanks for the tip!
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] DropBox Handshake Error (35)I can’t even seem to re-authenticate Dropbox? Whenever I click one of the ‘Reauthenticate’ buttons I just get the following error above them
Dropbox API: (35) error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure
Any ideas?
Forum: Fixing WordPress
In reply to: 707 PermissionsHmm I tried setting wp-admin to 700 as the article suggests (from what I understand?) but then it doesn’t allow me to login to wp-admin in my browser
Is this normal?