BJ Bowen

Forum Replies Created

Viewing 13 posts - 61 through 73 (of 73 total)
  • Author
    Posts
  • in reply to: Video Code #204415

    BJ Bowen
    Full Member
    Post count: 73

    so, I’m changing this back to no tabs until my client has a chance to view it.

    in reply to: Video Code #204413

    BJ Bowen
    Full Member
    Post count: 73

    crap… listing preview is blank again. I just sent my client a link to go view the add listings procedure

    in reply to: Video Code #204412

    BJ Bowen
    Full Member
    Post count: 73

    i haven’t even touched it and now it’s not working again… ??

    in reply to: Logo – Custom Field – Add Listing #204340

    BJ Bowen
    Full Member
    Post count: 73

    There was a setting to turn the pop-up off and I did that before i wrote to you… that’s why the lightbox isn’t working now. I was hoping that it would fix my problem. But, the image is still a link to a url… soooo… hmmm. I was hoping there was another checkbox that I just wasn’t seeing.

    in reply to: Video Code #204335

    BJ Bowen
    Full Member
    Post count: 73

    that is sooooo weird. thanks for looking into it.

    in reply to: Video Code #204302

    BJ Bowen
    Full Member
    Post count: 73
    This reply has been marked as private.
    in reply to: Logo – Custom Field – Add Listing #204277

    BJ Bowen
    Full Member
    Post count: 73
    This reply has been marked as private.
    in reply to: Video Code #204275

    BJ Bowen
    Full Member
    Post count: 73

    on the Preview listing page and the listing details page, the video doesn’t work for me IF I am using tabbed content. I turned the tabs off and the video works.

    Now, in this view, the problem is that the map in the left sidebar is overlapping the content.

    this is the untabbed view; take a look: http://www.dev1.foundation96.com/places/north-carolina/williamston/acupuncturists/miles-healthy-choice/

    in reply to: Listing Description #204116

    BJ Bowen
    Full Member
    Post count: 73

    Nevermind this one… I didn’t know that excluding the “Profile” was excluding the description. (I thought the profile was the author’s profile.)

    Thank you.

    in reply to: Add Listings page #204069

    BJ Bowen
    Full Member
    Post count: 73

    Thank you for your reply. I could not find instructions to edit the add-listing.php and when I wrote to you, your reply was to simply change the text using the .po and .mo files. So, that didn’t really help with the html. That’s why I put the instructions.

    As for the last bit, I’ve never used a theme that required so much effort to change some field label names. Still, this is a great theme and I appreciate your help.

    Is there a reason that I can’t do it the way I have done it?

    in reply to: Add Listings page #203837

    BJ Bowen
    Full Member
    Post count: 73

    For all who may want to change the Add Listing page:

    INTO PARAGRAPH TO ADD-LISTING PAGE
    You can copy the add-listing.php into the Child Theme and make changes to the file if you want to add an intro/welcome/instruction paragraph by following these steps:
    1. Create a new folder in the Child Theme and name it geodirectory
    2. Copy the add-listing.php file to that folder
    3. Add your html just above the “do_action(‘geodir_add_listing_page_mandatory’);”

    CHANGE THE ADD LISTING FORM
    You can change the label names of the form fields (that aren’t governed by the wp-admin GeoDirectory > Place Settings) by removing the function that creates the form.

    Here’s how to REMOVE the function:

    Add this code to your child theme functions.php file:

    add_action(‘init’ , ‘remove_functions’ , 15 );
    function remove_functions() {
    remove_action(‘geodir_add_listing_form’, ‘geodir_action_add_listing_form’);
    }

    1. Then copy the geodir_action_add_listing_form function (find it in the geodirectory_template_actions.php on line 2098).

    2. Paste the code into your child theme functions.php and change the name to something unique like “change_geodir_action_add_listing_form” as in the example below:

    add_action(‘geodir_add_listing_form’, ‘change_geodir_action_add_listing_form’, 20);

    function change_geodir_action_add_listing_form() {
    //function contents//
    }

    3.Change the function contents to your customization

    CHANGE THE LABELS
    Note: Look in the language.php file to find the defined values for the form labels. For instance: To change the label that reads “Listing Title” to something that says “Business Name”,
    1. look at the language.php file and you’ll see that it is defined as ‘PLACE_TITLE_TEXT’.
    2. find PLACE_TITLE_TEXT in the function (the one you’re customizing in the child theme) and it will look like this: <label><?php echo PLACE_TITLE_TEXT;?><span>*</span> </label>
    3. REMOVE “<?php echo PLACE_TITLE_TEXT;?> ” and replace it with “Business Name”.

    The code will now look like this: <label>Business Name<span>*</span> </label>

    in reply to: Add Listings page #203671

    BJ Bowen
    Full Member
    Post count: 73

    Okay.. thanks for that… still on the Add Listings page. I want to change some of the wording. For example “Enter Listing Details” I’d like to change to “Enter Business Details”.

    I can’t see there’s a place for that in the admin, so, I’ve successfully changed the language.php file. When I move that file to the Child Theme, the changes don’t stick.

    I put it Child Theme > geodirectory > language.php

    This structure worked when I put my customized add-listing.php.

    How do you suggest that I do this? Will I need to write a function?

    in reply to: Add Listings page #203514

    BJ Bowen
    Full Member
    Post count: 73
    This reply has been marked as private.
Viewing 13 posts - 61 through 73 (of 73 total)