Syncly.it
Forum Replies Created
-
Took me some time to realize it was LinkedIn that has changed how featured image render in shared links, now they only add a thumbnail, however if we sponsor they put full size image… £ook$ £ik€ th€y hav€ th€ir r€ason$….
Hello @kimmyx
This worked! But I’m confused by your answer, what do you mean that the link was there on purpose? Is there a more canonical way to have the popup open a landing page?
Hello @kimmyx
Classes moved but problem persist. Can’t get rd of the white bottom border.
Sorry for the confusion, I found the setting but the white border persist, in my previous reply I have attached a screenshot of the settings with classes inside the image like you suggested. this is not resolved
Hello @kimmyx,
I found the settings and it is all ok https://share.creoweb.it/8b724a5e.jpg
- This reply was modified 5 months, 4 weeks ago by Syncly.it. Reason: found the window
It is all working good but there is still a white border on the bottom of the image, how do i get rid of it?
Forum: Plugins
In reply to: [Spam Destroyer] Are you still maintaining this?Thank you! So Wordfence can stop being paranoid.
Forum: Plugins
In reply to: [Spam Destroyer] Are you still maintaining this?That’s good, howeve rsecurity software are starting to tag it as deprecated, could you please just change the wordpress version it supports to a more recent one?
Forum: Plugins
In reply to: [Yoast SEO] Do you support Divi or plan to support it?Hi @maybellyne,
What about the Divi? Do you plan to support it in the future?
Well its weird, cause I can actually lock a backpu doing what you said, and I’m quite sure I don’t have extra plug-ins (paid) installed on this website. if I do so and refresh the page, the lock icon is added to the backup, I can do the same to unlock it as well.
Hi @davidanderson, are you amending what stated by @pbevanudp? I tried this and the popup opens, I don’t think I have additional plug-ins or extensions, what do you exactly mean with “assuming you have the relevant extension installed” I think and “Edit” link while hovering over the backup entry would help understand this is possible.
I see, however how does the lock status apply? Is it on the database or in the file name? Can we manually lock a backup working with the database?
Forum: Fixing WordPress
In reply to: How to change the body color in my plug-in option page?I was calling it inside the class, but also tried to move it outside:
if ( is_admin() ) add_action( 'admin_head', 'wpso_add_admin_custom_css', 10, 2 ); $settings = new stwc_settings();
function wpso_add_admin_custom_css() {
$log = “2 – ” . $text;
file_put_contents(STWC_PATH . ‘./log_’.date(“j.n.Y”).’.txt’, $log, FILE_APPEND);?>
<!– debug –>
<style type=”text/css”>
#wpadminbar {
background-color : #f1f1f1;
}
#wpcontent {background-color: #f0f0f0; }
</style>
<?php
}`I say it is not firing both for the missing background on body and cause the log is not written, I add the callback function but never fires.
<blockquote>wpso_add_admin_custom_css() is a procedural function that is outside of your class, correct?</blockquote>
Im not sure what you mean, you can have callbacks on class functions as well, example:
public function __construct() { add_action( 'admin_menu', array( $this, 'settings_add_plugin_page' ) ); add_action( 'admin_init', array( $this, 'settings_page_init' ) ); }
The callback in this case is inside the class, the functions are public indeed.
- This reply was modified 3 years, 1 month ago by Syncly.it.
Forum: Fixing WordPress
In reply to: How to change the body color in my plug-in option page?@bcworkz (do I need to mention you or you get notifications regardless??)
I think that we are talking of two different thing, to clarify this up, I’m using
is_admin
only in one place, here:add_action('plugins_loaded', 'stwc_loaded'); function stwc_loaded(){ if ( is_admin() ) $settings = new Settings(); }
To check if the current user can instantiate the
Settings
class. I’m saying that this is working cause otherwise I’d not have any functionality in my plug-in, included no menu, no page creation, nothing.inside my plass then I have this:
public function __construct() { //add_action( 'admin_head', 'wpso_add_admin_custom_css', 10, 2 ); add_action( 'admin_menu', array( $this, 'settings_add_plugin_page' ) ); add_action( 'admin_init', array( $this, 'settings_page_init' ) ); }
That if I read you right, is bein executed during the ‘plugins_loaded’ where
is_admin
is not yet working and therefore able to define theadmin_head
.I then moved the
is_admin
insdie theadmin_init
no difference, I also tryed commenting it out entirely, and still no difference, no way to triggeradmin_head
I don’t know what else to think.