Mahesh Waghmare
Forum Replies Created
-
Forum: Plugins
In reply to: [Copy Anything to Clipboard] Does your plugin support Backend?Okay.
I’m mark this topic as resolved!
If you have any other issue then don’t hesitate to create new one!
Thanks.
Forum: Plugins
In reply to: [Site Demo Content] ThemesDo you mean importing the sample sites? If yes then, I recommend you to use the Astra Sites plugin which provides the free sites.
This provides the demo data of those themes and plugins who have provided the demo data on the public domain.
If you want the demo data of any theme then you can contact them and suggest to provide the sample data for that theme. If they provide then I’ll implement it into the plugin.
Forum: Plugins
In reply to: [Copy Anything to Clipboard] Doesn’t work on mobileHello,
I have read an update in which I have added support for IOS device. Please update your plugin and check it once.
Forum: Plugins
In reply to: [Copy Anything to Clipboard] How to use shortcode inside ?Great!
Still sharing the code snippet which helps for other users too.
Copy below code and add into your child theme:
/** * Enqueue 'Copy the Code' in wp-admin/backend area. * * @todo Change the <code>prefix_</code> and with your own unique prefix. * * @since 1.0.0 */ if( ! function_exists( 'prefix_enqueue_copy_the_code_in_admin' ) ) : function prefix_enqueue_copy_the_code_in_admin() { if( is_callable( 'Copy_The_Code_Page::get_instance' ) ) { add_action( 'admin_enqueue_scripts', array( Copy_The_Code_Page::get_instance(), 'enqueue_assets' ) ); } } prefix_enqueue_copy_the_code_in_admin(); endif;
Gist URL for reference – https://gist.github.com/6d102a3d6dbda0c9388fb5caa498c43c
Hello,
Yes. There are two sizes of the images. For now it download that size. I’ll add the size option in future plugin release.
Forum: Plugins
In reply to: [Copy Anything to Clipboard] Using <pre> breaks word wrapHello,
Now I have released plugin version 1.4.0 in which I have added the option on settings page to copy either HTML or text.
So, you can simply set the text option.
Forum: Plugins
In reply to: [Copy Anything to Clipboard] Does your plugin support Backend?Hello,
Now it is working on front-end only. You can enqueue the js on back end to make it work.
Forum: Plugins
In reply to: [Copy Anything to Clipboard] support for emojis on mobile?Hello,
I have just released plugin 1.4.0 in which I have added option in settings page to copy the text or HTML tags from the content.
You can try the text option.
Forum: Plugins
In reply to: [Copy Anything to Clipboard] How to use shortcode inside ?Hello,
Can you please share the example. Or reference site. So I can check and let you know the possible solution.
Forum: Plugins
In reply to: [Copy Anything to Clipboard] Doesn’t work on mobileHello,
Can you please share which mobile device are you using? Because of recently I have tested it on various mobile devices though browserstack.
Forum: Themes and Templates
In reply to: [Bhari] I want to narrow down my site.In not understand your issue. Also your screenshot is broken. I think you have change the theme. Can you please check it and let me know for further help.
Forum: Themes and Templates
In reply to: [Bhari] change background color main-navigationHope, It resolves. If not then create a new topic/ticket.
Forum: Reviews
In reply to: [Copy Anything to Clipboard] Why the ‘COPY’ text at the end of the texts?Hello,
1. The text
Copy
is remove from the copied content. Please update your plugin.2. Nope, I have not left this featured. It works same as desktop on mobile. I have tested the plugin on mobile and it works as expected.
Maybe, This is the mobile specific issue. On which mobile device you have facing this issue?
Forum: Reviews
In reply to: [Copy Anything to Clipboard] Why the ‘COPY’ text at the end of the texts?This is the bug.
I have added the
Copy
button with JS in the<pre>
tag and it copy all the content from the<pre>
tag. For that the Copy string copy into the clipboard.We have fix this in another branch and it will merge in upcoming plugin release.
It should be a temporary issue due to server down. Can you please check it again?
- This reply was modified 6 years, 11 months ago by Mahesh Waghmare. Reason: improved answer