Forum Replies Created

Viewing 15 replies - 31 through 45 (of 96 total)
  • Thread Starter cybershot

    (@cybershot)

    figured it out. The code works. I had content in the excerpt and had to echo out that instead of content

    Thread Starter cybershot

    (@cybershot)

    changed my mind. I am just going to use the defaults

    Thread Starter cybershot

    (@cybershot)

    I followed this tutorial for your plugin

    https://wp.tutsplus.com/tutorials/creative-coding/bringing-the-membership-process-to-the-front-of-your-site/

    but it doesn’t seem to work fully. I see the custom fields that they talk about adding later on in the tutorial but it doesn’t populate the profile. I see the field in the profile but it’s empty. I saw the fields in the register screen and filled it in but it didn’t populate anything on the profile page. I thought I would try doing it the way your documentation shows it next.

    Thread Starter cybershot

    (@cybershot)

    yes, it was a typo. I looked through the documentation and that is why I was so confused because I thought it created it’s own page as well yet installed and reinstalled several times over the course of two hours and it would never work without the shortcode. I tried giving it a page id for the custom page with the shortcode, I tried deleting the shortcode and the page and removing the id from the admin area, nothing worked. It’s working now and I am glad. I think this plugin will be exactly what I need and save me a bunch of time.

    I don’t suppose you have any infromation on how to get the custom fields to populate the admin area of wordpress do you Jeff? I would like to follow your documentation for adding custom fields to the login and then be able to go into users in the admin area and see the data show up there.

    Thread Starter cybershot

    (@cybershot)

    I changed cat= to category_name

    @hiskingdomprophecy

    Your fix did work for me running version 3.1.2

    Thanks for the tip

    Forum: Fixing WordPress
    In reply to: is_page help
    Thread Starter cybershot

    (@cybershot)

    well, that is weird. It seems to have worked. Thank you. I will have to do some reading on is_home(). I do not understand why that worked but it did.

    Thank You

    Forum: Fixing WordPress
    In reply to: is_page help
    Thread Starter cybershot

    (@cybershot)

    I am not trying to exclude them from the homepage. I have a static homepage set up with a custom query. It works fine. What I am trying to do is exclude them from the blog page from the loop.php file

    Forum: Fixing WordPress
    In reply to: HELP NEEDED:

    this usually happens because you did not provide enough room for the sidebar. meaning your content area is to wide so it is pushing the sidebar and the sidebar has no where to go but down.

    Thread Starter cybershot

    (@cybershot)

    I understand all that. The problem is this.

    I have styled my menu a specific way. So when that menu isn’t present. The nav area looks bad. I thought that if wordpress isn’t using wp_nav_menu then it uses wp_list_pages. I can’t get it to work. I want the nav area to look good no matter what menu is working. I have checked the codex and I don’t see how to set the callback function when registering menus

    Thread Starter cybershot

    (@cybershot)

    I have tried this code and it just doesn’t work. I don’t understand why.

    I have styling on the menu and the menu displays perfect. But If I throw in the if statement then it breaks the styling. I tried this

    
    
    <?php if(wp_nav_menu(array('menu' => 'primary'))){
    					 wp_nav_menu( array( 'theme_location' => 'primary','container' => 'div','container_id' => 'navigation','link_before' => '<span>','link_after' => '</span>' ) );
    			} else {
    				echo "testing";
    			} ?>

    but this showed both the menu and the testing

    the reason I am doing this is because when I activate the theme, the default menu shows and it has no styling. So I am trying to get control over what menu shows. This just isn’t working

    Forum: Fixing WordPress
    In reply to: moving functions?
    Thread Starter cybershot

    (@cybershot)

    You know the custom fields in the post editor? It is really easy to get the key, value pair from custom fields. Then you can press that nice button to add another one or delete the fields. I want to expand on the custom fields and add more inputs. Right now, you just have key, value. I want key, value 1, value 2 value 3. I want to group them together. But I need to hook into the function from the theme files.

    The function that runs the custom fields is in wp-admin\includes\template.php and it is called meta_form()

    I want to move or hook into that function so that I can add my extra inputs. I have been trying for days.

    Forum: Fixing WordPress
    In reply to: image sizes
    Thread Starter cybershot

    (@cybershot)

    okay. I deleted those values and put in 0. It still resizes the image the wrong size. I figured that setting the image size with add_image_size would have set the sizes. There has got to be a way to set the default small medium and large size

    Forum: Fixing WordPress
    In reply to: image sizes
    Thread Starter cybershot

    (@cybershot)

    I show three image sizes in the uploader

    150×150 small
    300×85 medium
    large does not display the size
    959×274 full size

    yet in the uploads folder, I have

    959×274, 150×150, 183×52, 183×91, 300×85, 522×149, 590×168

    I dont’ know why there is 300×85. Where is it being told to generate that size?

    Thread Starter cybershot

    (@cybershot)

    yep, I forgot about the ampersand sign. Thanks.

Viewing 15 replies - 31 through 45 (of 96 total)