saas
Forum Replies Created
-
Forum: Plugins
In reply to: [Disabler] Parse error: syntax error, unexpected ‘function’Hi Brian,
It seems like you are using older version of PHP.
So please at least use PHP 5.6+, and you should not see this error.
Forum: Plugins
In reply to: [TinyMCE Code Element] How about sending a pull request to core code?Hi Takayuki,
I saw your patch, and glad you did it.And I tested latest v3.9 beta and your patch, it works fine.
And I agree with @nacin on this, as you don’t need a dialog box for pre.
Otherwise its working fine.
I think you should keep it simple,
don’t assume / detect anything in your code (like whether I should wrap “code” or “pre” around selected text, instead why not provide dropdown selection (similar to “Text Color” button, which list down colors), so you can show pre / code as two option and leave it upto the user to select which one, as the user who is going to use code / pre tags will surely be the one who knows what they do, and will have to select either function name, tag or word for applying code tag (inline) or for block level pre they have to select multiline text etc.
I am hoping my suggestion is useful for you.
Forum: Fixing WordPress
In reply to: wp login trying to use http// with the ":" missingHi brentst,
Please before doing anything with wordpess refer to documentation, specially when you don’t have any experience with wordpress.https://codex.www.ads-software.com/Moving_WordPress
and / or
follow links under “Additional Information” section on above page.
if still fails, please hire professional to fix the issue.
Forum: Plugins
In reply to: [TinyMCE Code Element] How about sending a pull request to core code?Hi Takayuki Miyauchi,
I see.
Good, looking forward to see that.Forum: Plugins
In reply to: [WooCommerce] Not working with 3.8.1@chr1s9r, its not a woocommerce issue, its the theme you are using, also you need to review the changelog of v2.1, as it deprecated alot, removed several pages etc.
Works now, I had setting Referers set to my domain which was causing issue, set to Any referer allowed and it works now.
Thanks.
Thanks, I have watched your video and I have enabled Analytics API.
See
And its only giving error for your plugin, not for yoast analytics plugin or other google dashboard plugin available here, for both it lists down profiles and works well.
Forum: Plugins
In reply to: [Admin Color Schemes] Any plans for *.less version?Hi Kelly,
I didn’t knew this plugin is your work, sorry about that. I posted this thread here hoping this team is different (as I am not using plugin instead using its code in my theme, so didn’t go through the credentials etc, so didn’t realized plugin creator is same :(, my bad).Yes I read your response in that thread. Thanks.
My Pleasure ??
Forum: Fixing WordPress
In reply to: Strange wp_head code appears in source code of htmlThanks for the input, I still didn’t found the culprit code, but I traced it to a third party visual builder plugin which I recently started learning and trying to integrate into my theme. Closing the thread.
Thanks @andrewnevins for you input.
Forum: Fixing WordPress
In reply to: Strange wp_head code appears in source code of htmlIt only exist’s with my custom coded theme, but I can’t trace its source.
Forum: Fixing WordPress
In reply to: Strange wp_head code appears in source code of htmlSorry, its my local server :), should have mentioned it, its my development system, I have been using this same instance for over I think 1.5 years now, and I have installed over 1000 plugins and dozens of themes for testing / reviewing etc over this period, but I searched through database as well but no instance. Not sure what caused this.
Forum: Plugins
In reply to: [DW Shortcodes Bootstrap] Bootstrap 3.0+1
Forum: Plugins
In reply to: [WooCommerce] How can I send an attachment with my email?No problem welcome!. ??
Forum: Plugins
In reply to: [WooCommerce] How can I send an attachment with my email?I suggest you explore the filter
add_filter(‘woocommerce_email_attachments’,’handle_my_auto_email_attachments’), 10, 2);
function handle_my_auto_email_attachments($attachment = “”, $emailtype = ”){
//do your stuff here
}I wish I had a working example, but I don’t have it :).
Note: I suggest you try to buy the “Email Attachemnts” plugin from woothemes and see how they did it and that will surely help you achieve what you want.