kemie
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Completely custom cssWill be looking for another plugin since this is an important feature for me.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Completely custom cssAny news?
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Completely custom cssSame thing happens with classic buttons. My custom CSS is ignored and ssba.css is still added ??
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Completely custom cssYes, using Version 7.4.18. Problem has persisted for DAYS after changes (well, since before I first posted this thread). The problem seems to be that ssba.css is loaded by the plugin with all the default styles
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Completely custom cssYou can see it at:
https://precisely.se/blog/So far, the only thing in my custom css field is:
.ssbp-list, .ssbp-btn{border:1px solid red !important;}
Image of the relevant setting:
https://monosnap.com/file/7NQcZh1sS9El5YEMBl8fDMtO1zSJuB#embedScreenshot of what the buttons look like; they should, in theory, have no styling at all except for a red border.
https://monosnap.com/file/bZVMi7gYqmIp7Pumo39h2dwJXQYIuoForum: Plugins
In reply to: [Twitter Widget Pro] LAST VERSION IS HACKEDForum: Plugins
In reply to: [Prevent EU Checkout for Easy Digital Downloads] array_key_exists errorYup, shows me sweden, which is correct.
Thank you for looking into this ??
Forum: Plugins
In reply to: [Prevent EU Checkout for Easy Digital Downloads] array_key_exists errorI see no mention of it in my php.info
is there any workaround to this?
Forum: Plugins
In reply to: [Specific Files] Inline edit boxes not saving codeCan confirm the same is happening to me in the latest WordPress- any way to fix it?
Forum: Fixing WordPress
In reply to: Theme is breaking permalinksThanks! That wasn’t it, since permalinks did work with the default theme. I finally found the culprit. When registering my CPT I used the line
'rewrite' => array('slug' => ''),
commenting it out made my permalinks work again.
Forum: Plugins
In reply to: [Posts 2 Posts] Two nested loops- only one worksSpoke too soon. Now my THIRD loop is not working. I’m tearing my hair out here. Any clues?
Forum: Plugins
In reply to: [Posts 2 Posts] Two nested loops- only one worksTalking to myself here. Not sure what was wrong originally, but solved by instead using foreach:
$platinum = get_posts( array( 'connected_type' => 'sponsors_to_event', 'connected_items' => $post, 'nopaging' => true, 'cat'=>18, ) ); foreach ( $platinum as $sponsor ) { echo $sponsor->post_title; };
Forum: Plugins
In reply to: [Posts 2 Posts] nested connections and future postsWorked like a charm thanks!
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] triple nesting, connections of draftsTHANK YOU! it was actually to_query_vars that I needed, but your post got me going in the right direction. You′re a lifesaver!
Forum: Plugins
In reply to: [Posts 2 Posts] nested connections and future postsThank you! I’ll give it a go