indrakubicek

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 29 total)
  • Author
    Posts
  • in reply to: List View Shows No Events #606176
    indrakubicek
    Participant

    I had this problem too. In my case I had copied all the plugin files into my theme folder so that I could simply override them as necessary during development. I hadn’t actually changed the list view though and I got my list view working again by deleting the override files. Hopefully this applies/ will work for you too πŸ™‚

    in reply to: Add price to related events #270527
    indrakubicek
    Participant

    Worked it out! πŸ˜€

    (and updated code linked to above in question marked as answer)

    in reply to: Add price to related events #270446
    indrakubicek
    Participant

    Ah, actually, I still need to get null, true in there somewhere so that events without prices look correct too… can you help me with the final stretch?

    in reply to: Add price to related events #270403
    indrakubicek
    Participant

    Hi Barry,

    I hadn’t actually kept a copy, but your response prompted me to give it another try and I sussed it! πŸ™‚

    My related-events.php file in theme-folder/tribe-events/pro now looks like this

    The extra code I used can be found in lines 50-54.

    in reply to: Title page on Photo mode #237743
    indrakubicek
    Participant

    this thread solved my particular issue if anyone want to do the same thing…

    indrakubicek
    Participant

    Thanks Barry, if I just wanted to change the text that is displayed, that would help, yes. But I don’t.

    I obviously wasn’t really clear enough, because I think you missed a key part of my question:

    “<b>rather than</b> displaying β€˜Date’ and <b>being able to select a specific date, I want</b> it to say β€˜Events in’ and <b>[to be]just given the options to choose a specific month.</b>”

    So, it isn’t just the <i>text</i> from the month view I want to use in photo view it is the <b>functionality</b>.

    Make sense?

    in reply to: Filter Bar – Template Override for category order #236432
    indrakubicek
    Participant

    I’d like to do something similar but you’ve removed the code you shared in the pastebin – any chance of sharing that again irishrunner16? πŸ™‚

    indrakubicek
    Participant

    edit: that *doesn’t* seem to do the trick.

    in reply to: Display Category Titles instead of Upcoming Events #235510
    indrakubicek
    Participant

    Wonderful, that works, thanks!

    One last thing… I couldn’t help noticing that the title for the page shown e.g. in browser title bars is still ‘Upcoming Events’ i.e. if I do ctrl+U is see:

    
    <head>
    <meta charset="UTF-8" />
    <title>Upcoming Events</title>
    

    How would I go about changing that to display the category titles too?

    Thanks!

    in reply to: Display Category Titles instead of Upcoming Events #233848
    indrakubicek
    Participant

    Hey, thanks loads for trying to help Barry. I just tried replacing my two bits of code with the consolidated code you provide above but it didn’t seem to work: ‘Upcoming Events >’ was still displayed. :-/ any ideas?

    in reply to: Add prices to photo view #233265
    indrakubicek
    Participant

    damn, formatting wrong on the above post and not possible to edit, hopefully you get the picture :-/

    in reply to: Add prices to photo view #233257
    indrakubicek
    Participant

    Just to add so this can be a complete solution to anyone else who wants to achieve the same thing, I put this code:


    <!– Add event cost –>
    <div class=”tribe-events-event-cost-photo”>
    <?php echo tribe_get_cost( null, true ); ?>
    </div>

    
    
    In my /theme-folder/tribe-events/pro/photo/single-event.php file (I've got it after the line ending <!-- .tribe-events-event-meta --> which seems to work OK for me, but I guess you could experiment with putting it in other places too)
    
    I've then got the following css in my /theme-folder/tribe-events/pro/tribe-events-pro.css file:
    '
    /* Styling price on photo page
    ----------------------------------------- */
    
    div.tribe-events-event-cost-photo {
    	border: 1px solid #ddd;
    	float: right;
    	text-align: center;
    	padding: 5px 10px;
    	font-weight: bold;
    	background: white;
    }
    
    in reply to: Add prices to photo view #233254
    indrakubicek
    Participant

    Aha, upon further experimentation I tried the following:

    	
    <?php echo tribe_get_cost( null, true ); ?>
    

    And now the currency symbol is displayed! (shows how much I know about how functions work! i.e. very little! πŸ˜› )

    Also managed to style in the end too πŸ˜€
    (funny how often getting desperate and asking a question somehow helps to answer it oneself).

    For some reason trying to use the tribe-events-event-cost css class used elsewhere didn’t seem to work (just made the price disappear), so I created tribe-events-event-cost-photo and used that instead.

    Now I have the following in my tribe-events-pro.css file and all seems to work fine πŸ˜€ :

    
    /* Styling price on photo page
    ----------------------------------------- */
    
    div.tribe-events-event-cost-photo {
    	border: 1px solid #ddd;
    	float: right;
    	text-align: center;
    	padding: 5px 10px;
    	font-weight: bold;
    	background: white;
    }
    
    in reply to: Add prices to photo view #233220
    indrakubicek
    Participant

    Hi Casey,

    Thanks for the initial pointer but I’m really struggling to get this working.

    Displaying the prices is a pretty basic/ key bit of functionality so I don’t really get why it is not displayed on the photo view (whereas it is displayed pretty much everywhere else).

    Again, any additional help to simply get the price showing on the photo view very warmly received. At the very least I need the relevant currency symbol to be displayed.

    Thanks!

    in reply to: Display child/ parent categories on category pages? #233176
    indrakubicek
    Participant

    Hey Casey,
    Thanks for your response. I’ll look into trying to work out the php code I’ll need to do this, but – assuming I work out the necessary code, where would I put it? into each individual template for each view? or in functions.php? or what?
    Thanks!

Viewing 15 posts - 1 through 15 (of 29 total)