Integrantsvs
Forum Replies Created
-
Thanks Alin. I’ll try defining the site home and site url in the wp-config.php.
I appreciate your response.
Forum: Plugins
In reply to: [WPS Hide Login] Create custom login slug prior to installationPerfect, thanks Nicolas!
Forum: Plugins
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] Run a reportCan you take that a tiny step further and clarify if it’s available in the paid version of the plugin? Or is that something I’m supposed to assume exists, buy the plugin, only to find out doesn’t exist?
Forum: Plugins
In reply to: [Yoast SEO] Error in Edit Post/Page after Update from 12.5.1 to 12.7.1Same issue here, but it only happens to one user. Using 12.7.1 she can’t switch to the text editor, nor make any changes to the Yoast sections in a post. This happens to her on OS X in Chrome & Safari, as well as on Windows 10 in Chrome, and on 3 different internet providers. I don’t have this issue using Windows 10 and Chrome, and another user on the same site has no problems with it on OS X. It’s a bizarre problem.
- This reply was modified 5 years, 2 months ago by Integrantsvs.
Forum: Plugins
In reply to: [WordPress Comments Import & Export] Exporting Gibberish@smacksupport, thanks for answering my question with a question. I guess I should have provided a systems report.
@webtoffee, thanks for digging into this and realizing there was a problem without needing a systems report. I appreciate the quick turnaround! The update worked perfectly!
Forum: Plugins
In reply to: [WPBruiser {no- Captcha anti-Spam}] Comments blocked: Token Not SubmittedI’m having the same problem. Installed the plugin, and it works well, but some comments are being blocked.
Reject Reason: Token Not Submitted
Much like Dori, Thank you for the great plugin, but how can I fix this?
Forum: Plugins
In reply to: [WP-SpamShield] All my sites crashedSame here, though I cautiously installed on only one site. Locked it up tight. 500 error.
Sorry skysurfer78, there must be something else interfering. I’m sorry I couldn’t help more.
To display the code here on www.remarpro.com, you can press the “code” button at the top of the editor window, paste the code in, then press the code button again. Or use backticks (the key just left of the number ‘1’).
Try this for your functions.php:
<?php /* Load Omega theme framework. */ require ( trailingslashit( get_template_directory() ) . 'lib/framework.php' ); new Omega(); /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which runs * before the init hook. The init hook is too late for some features, such as indicating * support post thumbnails. */ function omega_theme_setup() { //remove_theme_mods(); /* Load omega functions */ require get_template_directory() . '/lib/functions/hooks.php'; add_theme_support( 'title-tag' ); /* Load scripts. */ add_theme_support( 'omega-scripts', array( 'comment-reply' ) ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'omega-theme-settings' ); add_theme_support( 'omega-content-archives' ); /* implement editor styling, so as to make the editor content match the resulting post output in the theme. */ add_editor_style(); /* Support pagination instead of prev/next links. */ add_theme_support( 'loop-pagination' ); /* Add default posts and comments RSS feed links to <head>. */ add_theme_support( 'automatic-feed-links' ); /* Enable wraps */ add_theme_support( 'omega-wraps' ); /* Enable custom post */ add_theme_support( 'omega-custom-post' ); /* Enable custom css */ add_theme_support( 'omega-custom-css' ); /* Enable custom logo */ add_theme_support( 'omega-custom-logo' ); /* Enable child themes page */ add_theme_support( 'omega-child-page' ); /* Handle content width for embeds and images. */ omega_set_content_width( 700 ); add_action( 'after_setup_theme', 'omega_theme_setup' ); } add_filter( 'mt_tickets_remaining_continuous_text', 'my_tickets_remaining_continuous_text' ); function my_tickets_remaining_continuous_text( $default ) { return "verfügbar: %s"; // your custom text } ?>
SkySurfer78, this is what the beginning of the functions.php looks like for the site I’ve changed the MT wording:
<?php // Exit if accessed directly if ( !defined( 'ABSPATH' ) ) exit; // BEGIN ENQUEUE PARENT ACTION // AUTO GENERATED - Do not modify or remove comment markers above or below: if ( !function_exists( 'chld_thm_cfg_parent_css' ) ): function chld_thm_cfg_parent_css() { wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css' ); } endif; add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css' ); // END ENQUEUE PARENT ACTION add_filter( 'mt_tickets_remaining_continuous_text', 'my_tickets_remaining_continuous_text' ); function my_tickets_remaining_continuous_text( $default ) { return "Seats Remaining: %s"; // your custom text }
Using the code above, you can see that I put mine in right after the child theme is enqueued. If you don’t have a child theme, or the above code, you could put it in at the very end of the functions.php, right before the final ?>
If this still doesn’t work for you, show me your functions.php. I’ll do what I can to help.
SkySurfer, you don’t need to install it as a plugin. Simply add those few lines of code to your functions.php and save.
Fantastic Joe, that worked. Thanks for helping out a non-programmer!
Thanks for the fast response Joe!
I took your example code, pasted into the child theme functions.php, and tweaked the wording as suggested:
add_filter( 'mt_tickets_remaining_continuous_text', 'my_tickets_remaining_continuous_text' ); function my_tickets_remaining_continuous_text( $default ) { return "Seats Remaining"; // your custom text }
It replaced the text like I wanted it to, but it doesn’t return the actual number of seats remaining. The integer is missing. How can I bring that back?
Forum: Plugins
In reply to: [Yoast SEO] Yoast crash visual editorI have two clients that are experiencing the same issue. Post editor (whether visual or test) hangs as you try to type. It’s not even an annoyance, it’s unusable. Clearing the cache isn’t a fix.
Forum: Reviews
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Pay the man!Thanks David. I probably fall into that category myself. I do look forward to what you come out with.