Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • No worries, thanks for your help so far. Maybe I just need to watch out for another plugin thats is more adaptable.

    Hi Bdwatt0,

    thanks for your help. I created a new functions.php with the code you posted, loaded it to my ftp. After reloading the site I get a white screen without any pic or text :/

    I am wondering why it is so hard to change one single word.

    Sorry, I do not even know how to display the code right :/ The ^ in the end and the beginning are not part of the functions.php.

    Thanks a lot. I tried to put it in. Now the site is still available, but the discribtion on the site still says “remaining”.

    ^
    <?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’ );
    ^

    The website is https://www.sup-revier.nrw, by the way.

    THX a lot!

    Hey Bdwatt0,

    thanks for your reply. I pasted it inside the functions.php of my template because it is written above, but the end of the story was that the complete site was down :/ So I deleted it.

    Would it be possible for you to post that part you included and where you included it? Sorry, I am not neraly a wordpress expert.

    Having the same problem here but it does not work out.

    Just to make a few things clear for me. I used the php with the example and did my changes like:

    <?php
    /*
    Plugin Name: Remaining Tickets Text ?nderung
    Plugin URI: https://www.joedolson.com/
    Description: Example plug-in demonstrating how to replace text using filters in My Tickets.
    Version: 1.0.0
    Author: Joseph Dolson
    Author URI: https://www.joedolson.com/
    */
    /**
    * Replace add to cart text using the mt_add_to_cart_text filter
    *
    * This is an example using the ‘mt_add_to_cart_text’ filter, which replaces the text for the Add to Cart button.
    * There are many text filters available in My Tickets beyond this example.
    */
    add_filter( ‘mt_tickets_remaining_continuous_text’, ‘mt_tickets_remaining_continuous_text’ );
    function mt_tickets_remaining_continuous_text( $default ) {
    return “verfügbar: %s”; // your custom text
    }

    I saved this file to my plugins folder and installed it, but there is no change? I would like to change the wording “X/X remaining” at the calender overview to “X/X verfügbar”

    Thread Starter skysurfer78

    (@skysurfer78)

    Wonderful, worked fine for me!

    THX for the fast help!

    Thread Starter skysurfer78

    (@skysurfer78)

    It is the date itself in the overview, but only the dates when a event is planed. Here is my website: https://www.sup-revier.nrw

    The Mini Kalender has a event on may, 1. The letter is written bold and underwritten, but: black. I would like to get it in red to display it more clearly (ENG is not my native language, hope it is clear to understand ?? ).

Viewing 8 replies - 1 through 8 (of 8 total)