multicelldesign
Forum Replies Created
-
Forum: Plugins
In reply to: [Spots] Double icon in WordPress adminYep, same here. Until an update lands I amended the CSS in /plugins/spots/ict-spots.php around line 534 with some dimensions and then removed the WP icon on the :before…
#postdivrich .mce-i-addspotbutton, #wpbody-content span.mce_addspotbutton, #adminmenu #menu-posts-spot div.wp-menu-image, #icon-edit.icon32-posts-spot { margin: 5px 5px 0; width: 24px; height: 20px; background-image: url( <?php echo esc_url( SPOTS_URL ) ?>/assets/icon.png ); background-repeat:no-repeat; background-color:transparent; background-position:0 0; background-size: initial; } #menu-posts-spot div.wp-menu-image:before { content: ""; }
A preview post function here would be nice lol.
Where the (unwanted) link stops there are two forward-slashes instead of one. Imagine that originally I’d bolded those ??Forum: Plugins
In reply to: [bxSlider integration for WordPress] [slider] shortcode options settingThanks for the speedy fix Vincent,
Upgraded a few moments ago and all is good.
Just in case people use multiple shortcode parameters, the pattern is [slider extra_options=”pager:false, infiniteLoop:false, hideControlOnEnd:true”] – so one set of quotes and comma-delimited ??
All the best, Karl
Forum: Plugins
In reply to: [bxSlider integration for WordPress] [slider] shortcode options setting…I should have added that the options only work when added to the extra options for the gallery shortcode, rather than the slider shortcode section as you would expect.
Regards, Karl
Hi,
“with no alternative available” was a bit worrying but _get_post_ancestors is no longer needed as WP_Post lazy-loads the ancestors property with get_post_ancestors().
Seeing as this is only used on line 42 of the plugin, I amended it myself by removing the first underscore.
See https://codex.www.ads-software.com/Function_Reference/get_post_ancestors for the “new” function.
Hope this helps, Karl
Forum: Fixing WordPress
In reply to: Contact Form 7 CSS on input and checkbox fieldsHi,
You might need to play around with getting the final specificity correct but another CSS selector you might try instead of extraneous markup etc would be input[type=”checkbox”].
https://www.quirksmode.org/css/selector_attributeAdvanced.html
Hope this helps, Karl