digitalsmithy
Forum Replies Created
-
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Form does not submit in SafariHi. I don’t know if this is the same issue, but I saw there’s a ‘file upload’ option on your form.
Due to a bug, Safari and iPad/iPhone will not submit a form with an empty file-upload option.
My solution was 2 forms, then detect the browser and display the div with the right form – one with upload, one without for Safari.
You can see more here. Hope that helps.
https://stackoverflow.com/questions/51968093/wordpress-htaccess-redirect-single-page-if-iphone-or-safari/51969884#51969884Forum: Plugins
In reply to: [Memphis Documents Library] Download statistics – manually changing1. You should really start a new thread.
2. No you can’t edit Owner this way.
3. You can change ‘author’ etc. by going to admin area, mdocs, click the document and ‘manage file’.If that’s not what you mean by owner, please start a new thread and give more details. Where do you see “Owner’.
Thanks
MForum: Plugins
In reply to: [Memphis Documents Library] Download statistics – manually changingYay! If it didn’t require gender reassignment and being uncomfortably penetrated I’d let you do things to me…
Which is to say, thanks – awesome support as ever ??
Forum: Plugins
In reply to: [Contact Form 7] align the recaptcha to centerToo late for you I guess, but in case anyone else finds this. Two bits of css will do it:
.capatcha {
text-align: center;
}.g-recaptcha {
display: inline-block;
}Solution found here: https://www.digitalwhores.net/shts/how-to-center-google-recapcha/
Forum: Fixing WordPress
In reply to: Custom Category Archive PagesWell, I feel pretty stupid. I just copied category.php to category-links.php so I could show you it breaking… and it works fine.
I spent hours unable to make it work so I’m totally baffled, and apologise for wasting your time – but as I say, it seems to have magically fixed itself.
Thanks for your efforts.
Forum: Fixing WordPress
In reply to: Custom Category Archive PagesAh well (no paste bin acc) here’s the template part again:
<section> <div class="col-md-12"> <?php if ( have_posts() ) : ?> <?php $item_number = 0; ?> <?php while ( have_posts() ) : the_post(); ?> <div class="col-md-4"> <article <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <a href="<?php echo esc_url( the_permalink() ); ?>"><h3 class="nicein niceout nicem"><?php the_title(); ?></h3></a> <a href="<?php echo esc_url( the_permalink() ); ?>"><?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'arch-img', array( 'class' => 'nicein niceout nicem' ) ); } ?></a> <?php the_excerpt( ); ?> </article> </div> <?php $item_number++; ?> <?php if( $item_number % 3 == 0 ) echo '<div class="clearfix visible-md-block visible-lg-block"></div>'; ?> <?php endwhile; ?> <?php else : ?> <p><?php _e( 'Sorry, no posts matched your criteria.', 'RecoveryDevTheme' ); ?></p> <?php endif; ?> </div> <div class="row pg-empty-placeholder"></div> </section>
Forum: Plugins
In reply to: [Memphis Documents Library] Styling, table sizing, js loadingThanks – appreciate the help ??
Forum: Plugins
In reply to: [Memphis Documents Library] Styling, table sizing, js loadingForum: Plugins
In reply to: [Memphis Documents Library] Styling, table sizing, js loadingok. doing 3 things at once. mdocs is under the ‘book’ menu item not cogs…
not an ‘issue’ as such. Have turned all columns back on. when you view it, especially in smaller browser (laptop), all columns are too narrow for content.
I’ve noticed the total room (table head width) isn’t used (i.e. columns don’t fill table width).
I can set font to 13px and it all looks nicer and fits – but I need 16px really (accessibility)
But I’m struggling to see what css to mess with to increase column widths…
Ta
Forum: Plugins
In reply to: [Memphis Documents Library] Styling, table sizing, js loadingsorry – is resources or (cogs) (i’m playing with the menu a bit…) to get to mdocs…
Forum: Plugins
In reply to: [Memphis Documents Library] Styling, table sizing, js loadingyep- is incomplete but ‘live’
https://recovery.digitalsmithy.co.ukForum: Plugins
In reply to: [Memphis Documents Library] Styling, table sizing, js loadingwhich makes you a splendid human being ??
any thoughts on the table css?
Forum: Plugins
In reply to: [Memphis Documents Library] Styling, table sizing, js loadingThanks. Fair point about compatibility with so many themes/plugs.
I do load my own JQuery – but if I do so in the footer, I get an error and MDOCS fails.
This line causes the issue:
‘ <script type=”application/x-javascript”>
jQuery( document ).ready(function() {
mdocs_wp(‘https://recovery.digitalsmithy.co.uk/wp-content/plugins/memphis-documents-library/’, ‘/home/digitals/public_html/recovery/’);
});
</script>
‘It complains about jQuery being undefined (as it hasn’t loaded yet).
The site is still in dev here: recovery.digitalsmithy.co.uk
Advise on table format still appreciated – and thanks for your work/response ??
I have same issue but ONLY when I enable ACF (Advanced Custom Fields) plugin.
I’d really appreciate an indication of where I might look to resolve this conflict, which I suspect is either CSS or JS?Thanks