Mike250
Forum Replies Created
-
Thank you kindly. I’ll submit the details now.
Mike
Thanks for the reply Cais.
I’ve tried regenerating new thumbnails for a given gallery by selecting all and performing a create new thumbnails bulk action.
I tweaked the thumbnail size ever so slightly in settings and saved, then regenerated thumbnails, so love there either.
I’ve tried setting a gallery preview image to “No Picture”, saving, then uploading a new photo to the gallery. This new photo automatically becomes the preview image, but still no thumbnail for the gallery.
You recognize the fact that photo thumbnails inside galleries is working fine; it’s the gallery thumbnails inside albums that isn’t, right? It’s the gallery preview images that won’t show (ie. https://www.mike250.com/photos/y2015/)
Cheers,
Mick
Forum: Plugins
In reply to: [Simple Instagram] Shortcodes in Widget TextI got at it with CSS. I adjusted the size and padding that I wanted, for just two images, like so:
/* Instagram Feed Fix */ .si_feed_widget{ width: 320px; } .si_feed_widget .si_item:first-child { float: left; width: 155px; padding-right: 5px; } .si_feed_widget .si_item:last-child { float: right; width: 155px; padding-left: 5px; }
Thanks anyway!
In the “Finish Message” box for the quiz/survey options, add text there and a link back to the start of the quiz.
What worked for me was editing line 2362 in Ndizi.class.php and replacing:
<td><?php echo $this->time_total( array('ti_project_id'=>$project_id) ); ?></td></tr>
with:
<td><?php echo $this->time_total( array('project_id'=>$project_id) ); ?></td></tr>
Hi Marcus,
Thank you kindly for your quick response!
I confirmed by installing to a bare bones WP and see what you’re saying… the inline response and insert worked fine.
I’ve disabled each plugin individually and then all plugins with no luck, so I guess my theme is the culprit. I really don’t want to try switching themes, I spent a good deal of time configuring menu’s and widgets.
Are there known themes or JS that cause issues? Is there a traditional post and return version of Event Manager?
I’m using the paid version of the Versatile theme (https://themeforest.net/item/versatile-premium-corporate-portfolio-wp-theme/150471) and, if I can get this working, will be buying the pro version of Events Manager.
The demo, the documentation, and so far my use of it, is exactly what I need. Paypal integration will be huge for our implementation.
Can I provide a list of JS, JQuery scripts used if it helps?
Thanks in advance!
Brilliant mate, thanks for that!
I have developed my own workaround. Assuming your two new fields, “name” and “email”, I would expect the form entry name would be:
Custom_name
Custom_emailYou should see this on the Mark page. If it’s something else change my below code accordingly.
Here’s what you do. This is assuming out of the box 1.3.32 installation:
Edit /wp-content/plugins/wp-survey-and-quiz-tool/pages/admin/results/index.php and add locate line 50:
<?php foreach( $results as $result ){ ?>
Under it add:
<?php $mydata = unserialize($result['person']); $name = ucwords($mydata['Custom_name']); $email = $mydata['Custom_email']; ?>
Then on line 55 replace:
<?php echo htmlentities($result['person_name']); ?>
with:
<?php echo "$name $email"; ?>
Note: ucwords() makes the name appear in sentence case, capitalizing the first letter of each word. It just looks more professional to me.
Any troubles, leave me a message.
I have developed my own workaround. Assuming your two new fields, “name” and “email”, I would expect the form entry name would be:
Custom_name
Custom_emailYou should see this on the Mark page. If it’s something else change my below code accordingly.
Here’s what you do. This is assuming out of the box 1.3.32 installation:
Edit /wp-content/plugins/wp-survey-and-quiz-tool/pages/admin/results/index.php and add locate line 50:
<?php foreach( $results as $result ){ ?>
Under it add:
<?php $mydata = unserialize($result['person']); $name = ucwords($mydata['Custom_name']); $email = $mydata['Custom_email']; ?>
Then on line 55 replace:
<?php echo htmlentities($result['person_name']); ?>
with:
<?php echo "$name $email"; ?>
Note: ucwords() makes the name appear in sentence case, capitalizing the first letter of each word. It just looks more professional to me.
Any troubles, leave me a message.
Forum: Themes and Templates
In reply to: Upgrade to 2.0.2 Messes ThemesHow funny is it that this post is titled “Who is the Man” where I go about explaining why *I* am the man and no other man is.
Your answer was perfect, I shall now make you the only other “The Man” out there. ??
Turns out this post was a copy/paste from I am guessing another rich text type of program. I forget which, and am surprised I didn’t think of this. I thank you very kindly all the same.