mathewemoore
Forum Replies Created
-
This form is generated by newsletter and is in the right sidebar on this page: https://cmh.fcpotawatomi.com/
I am not sure what you mean by forced lists, but I do have them set to initially checked in the lists section.
You can use HTML form code to display the form anywhere, even on different websites. Just go to “Newsletter Dashboard”, under “List Building” dropdown choose “Subscription Form Fields, Buttons, Labels” and go to the “Form Code” tab to copy the html for the form.
Forum: Plugins
In reply to: [WP Job Manager] Remove Apply for Job ButtonI actually want to remove/replace the apply now button with a custom button that includes a few query args from the currently displayed job. Right now, i just added the button to the meta at the top of the job listing and used css to hide the built-in apply for job button.
So, my question is, if I were to modify the template you referenced in the previous reply, will a future plugin update overwrite my customizations?
Forum: Plugins
In reply to: [Simple Code Highlighter] Console Errors Prettify.cssI agree, I just removed the following line from the pretty.js file:
A.push("loader/prettify.css');Hopefully this gets fixed soon. Optionally, if you want to use it, you can just change that to a hard url for your site like:
A.push("https://www.mysite.com/wp-content/plugins/simple-code-highlighter/js/loader/prettify.css");Although, it actually looked worse since there was no padding around the code.
Thank you for the update.
I am experiencing this exact issue and posted almost 2 weeks ago and not a single response!
Come on guys, this is a serious issue, people can’t even signup so what’s the point of your plugin.
https://wordpress.org/support/topic/multiple-signups-blocked-from-corporate-network/
Any status on this? Pretty huge issue here. May I suggest adding a IP whitelist to the plugin settings.
Forum: Plugins
In reply to: [Infinite Scroll for GeneratePress] Got a demo for us?Just updated the plugin to version 1.0.2. Added some more configuration options and created a demo video.
https://www.youtube.com/watch?v=NueysU2XLlc
Video is in the Description on the plugin page as well
Forum: Plugins
In reply to: [Infinite Scroll for GeneratePress] Got a demo for us?Hi perthmetro,
Yes, you can see a slightly modified version in action at https://hike4.com. What I mean by slightly modified is that I have it running on the main blog feed and the sidebar at the same time.
The other place you can see it is https://northwoodsdigital.com/blog
I don’t have a whole lot of posts on the second website so that’s why I am providing two examples.
Forum: Plugins
In reply to: [RESTposts] Images are not showingI am more than happy to help you resolve this issue. First, did you check out the FAQ https://www.restposts.com/faq/
Also, could you provide more details?
- Is this plugin installed on the site you are trying to get images from? If not, the plugin needs to be installed and activated in order to get images from the website. This is not a fault of the plugin, but due to lack of a image url in the json feed. My plugin adds extra functionality to the json feed that enables the image url to be used.
- Are you using a shortcode or the widget?
If this information doesn’t help, please Contact Me and provide me with login credentials for the site you are having issues with along with a link to the page with the issue.
- This reply was modified 9 years ago by mathewemoore.
Forum: Networking WordPress
In reply to: Converting multisite from http to httpsI have quite a few times now and it’s pretty simple. First install the SSL certificate for the site. Then put this in your WP-CONFIG.php right before /* That’s all, stop editing! Happy blogging. */
define(‘RELOCATE’,true);
Then login to your site while being sure to include https in the site address.
WordPress will automatically update your site url to https. After that is done, be sure to remove define(‘RELOCATE’,true); from your WP-CONFIG.php. Inside your WP-CONFIG.php, look for the database name and make a note of it. You will need that to update a few records in phpMyadmin.Next step, if you have access to phpMyAdmin, open phpMyAdmin and locate the database you just took note of. Find WP_OPTIONS table and change locate siteurl and home. If either of those still have http, simple click the value and update it to https. Next, go to the WP_SITEMETA table and change it to https as well under siteurl.
If you are using WordPress Multisite with Subdomains and a Wildcard SSL Cert, you will need to do the same for all of the sites in the network. The all have a unique ID number assigned to them so it should be fairly simply to update them.
On the downside, if you have an existing site with tons of posts, you may need to use a search and replace plugin to update all the embedded links from media library items and links, etc.
I hope this finds you well. Have a good one.
Forum: Developing with WordPress
In reply to: Array_Chunk issue in sidebar using shortcodeMost graciously appreciate you help with this. That’s exactly what i needed. I added the ob_end_clean(); to the end like you suggested. And everything works perfect, no more breaking out of the widget sidebar. Thanks a million!
Here’s my final working code:
ob_start (); if( !empty( $posts ) ) { echo "<div class='mrp-container'>\n"; foreach (array_chunk($posts, $a['columns']) as $post) { echo "<div class='mrp-row'>\n"; foreach ( $post as $post ) { // Make JSON date human readable $jsondate = new DateTime( $post->date ); $humandate = $jsondate->format("F d, Y"); echo '<div class="single-mrp-post'.$mrpcolumns.'">' . '<a href="' . $post->link. '" title="'. $post->title->rendered . PHP_EOL . PHP_EOL. strip_tags($post->excerpt->rendered) .' "><img src="'. $post->swp_thumbnail .'"/><h4 class="mrp-post-title">'. $post->title->rendered . '</h4></a><p class="mrp-post-date">'.$humandate."</p></div>\n"; } echo "</div>\n"; } echo "</div>\n"; $output = ob_get_contents(); } ob_end_clean(); return $output;- This reply was modified 9 years, 2 months ago by mathewemoore.
Forum: Plugins
In reply to: [WP Job Manager] Errors after 4.6.1Thanks for your info. I definitely see the issue you are encountering. However, since you are using a paid plugin “WP Job Manager – Applications”, I suggest you seek their support staff and/or documentation.
Forum: Plugins
In reply to: Mixed Content: content must be served over HTTPS.From what I can see, it looks like it’s loading this script using http in the
<head></head>section of the html. I would look for anything there first, template files or plugins that may place it there.- This reply was modified 9 years, 6 months ago by mathewemoore.
- This reply was modified 9 years, 6 months ago by mathewemoore.
- This reply was modified 9 years, 6 months ago by mathewemoore.
- This reply was modified 9 years, 6 months ago by mathewemoore.
Forum: Plugins
In reply to: [WP Job Manager] Errors after 4.6.1Are you using a cache plugin? If so, i would recommend clearing the cache on that and in the web browser you are using. Also, check MySQL version and PHP to make sure you are using versions compatible with your version of WordPress.
Also, are you talking about the frontend posting via a page with the Job dashboard shortcode? If so, try using the WP Admin area to post a job and see if that has the same issue. I am currently using the WP Job Manager plugin on a wordpress multisite network running wordpress 4.6.1 and all my plugins are up to date.
