Matt
Forum Replies Created
-
Forum: Plugins
In reply to: [Media Library Assistant] Help with Field-level data sources markupThank you for the reply and I believe that answers my question fully for options A and B. As for C, I was referring to the page the image is inserted in, which is different from the page where that shortcode appears.
Thanks
Forum: Plugins
In reply to: [Multisite Enhancements] Main blog being tagged as external domainI do not have any external domains.
Forum: Plugins
In reply to: [Multisite Enhancements] Main blog being tagged as external domainI just added a “/” to the end of $haystack for a quick fix.
public function check_external_url( $haystack, $needle ) { if ( FALSE === strpos( $haystack.'/', str_replace( array( 'http://', 'https://', '//' ), '', $needle ) ) ) { return TRUE; } return FALSE; }Forum: Plugins
In reply to: [Multisite Enhancements] Main blog being tagged as external domainSo it looks like the issue is here:
public function check_external_url( $haystack, $needle ) { if ( FALSE === strpos( $haystack, str_replace( array( 'http://', 'https://', '//' ), '', $needle ) ) ) { return TRUE; } return FALSE; }In my debugging, $admin_bar->user->domain comes through in $needle with a slash on the end, where as $blog->siteurl for $haystack does not.
Forum: Plugins
In reply to: [Multisite Enhancements] Main blog being tagged as external domainSorry I don’t understand your question. Yes, it is the root domain in a multisite subfolder setup that is being flagged as external. How are you determining if a site is external or not? I wasn’t even aware you could add external sites…?
Forum: Plugins
In reply to: [Multisite Enhancements] Main blog being tagged as external domainThat was the point of my post. My site is not external and is indexed.
Forum: Plugins
In reply to: [Easy Add Thumbnail] How do I remove the thumbnails on pages?edit: well I went to add this in the code and saw you already had the filter in place! info here for people in the future: https://wordpress.org/plugins/easy-add-thumbnail/faq/
Forum: Plugins
In reply to: [Easy Add Thumbnail] How do I remove the thumbnails on pages?Your fix for this definitely doesn’t work. I disabled your plugin, removed the featured image from the page (verified it was removed– refreshed couple times), put in your code to deactivate thumbnail support, verified the meta box was gone from the “edit page” screen, re-enabled your plugin, and the featured image immediately gets added.
Think I’m going to be forced to dump this plugin because of this issue. Seems absurd to include full sizes images with no options. Many other plugins offer a “image size” dropdown where you choose one of the registered image sizes. And then you can modify the size from there (either through additional plugin options or via CSS.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Captions mess up lightboxComing here to look for a similar problem. I have the exact same issue. Multi-line captions in the gallery break the lightbox functionality. It ends up linking directly to the image instead of being lightboxed, but only for multi-line captioned images.
guessing it’s a regex issue.
Yea it’s a grid view.
Very much agree with Chris.
I only show the dates on multi-day events. The when tag shows the date on every event. On some days I can 6+ events. That’s a lot of extra text. On the previous version there was just a heading at the top that said, “Events on Nov 12th.”
This is my current event builder:
<div class="gce_aj_color">[feed-title]</div> <div>[title limit="30"]</div> <div>[if-single-day][if-not-all-day]<strong>When:</strong> [start-time][/if-not-all-day][/if-single-day][if-multi-day][if-not-all-day]<strong>When:</strong> [start-time], [start-date] - [end-time], [end-date][/if-not-all-day][/if-multi-day]</div> <div>[if-multi-day][if-all-day]<strong>Duration:</strong> [start-date] though [end-date][/if-all-day][/if-multi-day]</div> <div>[if-start-location]<strong>Where:</strong> [start-location][/if-start-location]</div> <div>[if-description]<strong>Notes:</strong> [description limit="30"][/if-description]</div>I use a custom event builder and use my own start times and don’t use the “[when]” tag. It seems extremely redundant and clutters the listing a lot to keep repeating the date when you can just have it on the heading at the top.