Forum Support

Shape 5
April 18, 2024, 10:29:15 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News: Shape 5 Forum
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: Few Questions - Site Title, Regarding Blog Post & Log-In Box  (Read 1433 times)
versedo
Jr. Member
**
Offline Offline

Posts: 7



« on: March 06, 2013, 02:14:17 PM »

First thing, the title to the website isn't visible on the browser. How to I edit that?

How to make blog posts on the home page excepts, or shorter like the rest of the category blog pages?

How to get edit Log in box sizes. I can't find anything about that option on the s5 Boxes?

Is there away to get rid of the Log-in box?

www.versedonline.com/v2

Thanks!
« Last Edit: March 06, 2013, 02:22:27 PM by lorrell » Logged
Tristan Rineer
Global Moderator
*****
Offline Offline

Posts: 3858

Gravatar


« Reply #1 on: March 06, 2013, 03:50:58 PM »

First thing, the title to the website isn't visible on the browser. How to I edit that?

Did you edit any of the files in the vertex folder of the theme?  The title is part of the core vertex code and should be functioning normally if you didn't change the code that adds it.

How to make blog posts on the home page excepts, or shorter like the rest of the category blog pages?

This WP support page should help with information on how to split your posts.  If you want to use the second option they mention, you can make the changes in "{themedir}/vertex/loop.php".

How to get edit Log in box sizes. I can't find anything about that option on the s5 Boxes?

You should be able to edit the box widths on the "Shape 5 Plugins -> Shape 5 Box" page in WP Admin.

Is there away to get rid of the Log-in box?

You can get rid of the login/register buttons by going into the theme options area and clearing out the fields that define the text for those buttons.
Logged

Tristan Rineer
------------
Shape 5 Team



- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
versedo
Jr. Member
**
Offline Offline

Posts: 7



« Reply #2 on: March 15, 2013, 07:59:15 AM »

The excerpt part, the only code I see to edit is ---->

<?php echo apply_filters('the_content',do_shortcode( the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>') ) )); ?>

then I change
<?php echo apply_filters('the_content',do_shortcode( the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>') ) )); ?>

it changes the post into an excerpt on the home page AND the actual post.

Possible to be more specific, I'm familiar with coding but this theme is a different language to me.
Logged
Tristan Rineer
Global Moderator
*****
Offline Offline

Posts: 3858

Gravatar


« Reply #3 on: March 15, 2013, 08:28:17 AM »

The excerpt part, the only code I see to edit is ---->

<?php echo apply_filters('the_content',do_shortcode( the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>') ) )); ?>

then I change
<?php echo apply_filters('the_content',do_shortcode(the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>') ) )); ?>

it changes the post into an excerpt on the home page AND the actual post.

Try this instead, it will use the excerpt version only if there are multiple posts in the loop for the active page:

Code:
<?php
     
if(!is_singular){
          echo 
apply_filters('the_content',do_shortcode(the_excerpt__'Continue reading <span class="meta-nav">&rarr;</span>') ) ));
     }else{
          echo 
apply_filters('the_content',do_shortcodethe_content__'Continue reading <span class="meta-nav">&rarr;</span>') ) ));
     }
?>



Possible to be more specific, I'm familiar with coding but this theme is a different language to me.

I completely understand.  The main complication is that I've had to rewrite code that was originally created on Joomla and make it work on WP.  I'm hoping to completely rewrite the WP version of the framework eventually, but I have no idea how long that will end up taking.
Logged

Tristan Rineer
------------
Shape 5 Team



- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
versedo
Jr. Member
**
Offline Offline

Posts: 7



« Reply #4 on: March 15, 2013, 12:28:32 PM »

Not working, am I supposed to replace that one line with that code?
Logged
Tristan Rineer
Global Moderator
*****
Offline Offline

Posts: 3858

Gravatar


« Reply #5 on: March 15, 2013, 01:02:05 PM »

Correct.  In the place where it has the call for the post content, put in the code that will alternate between the two options based on the content type.
Logged

Tristan Rineer
------------
Shape 5 Team



- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
versedo
Jr. Member
**
Offline Offline

Posts: 7



« Reply #6 on: March 15, 2013, 02:45:21 PM »

Didn't work exactly, still showing full content - www.versedonline.com/v2
Logged
versedo
Jr. Member
**
Offline Offline

Posts: 7



« Reply #7 on: March 15, 2013, 03:03:54 PM »

Hate to be a hassle, would you know the file I need to edit to make the title visible, i dont want to overwrite my current changes
Logged
Tristan Rineer
Global Moderator
*****
Offline Offline

Posts: 3858

Gravatar


« Reply #8 on: March 18, 2013, 09:14:18 AM »

I'm not sure what you mean by making the title visible, but I would suggest that you disable "Raw HTML mode" on the advanced tab of the theme options area - that will stop the formatting from being removed from your posts.
Logged

Tristan Rineer
------------
Shape 5 Team



- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
versedo
Jr. Member
**
Offline Offline

Posts: 7



« Reply #9 on: March 19, 2013, 04:31:15 PM »

Thank you.

And any solution for the excerpt?
Logged
Tristan Rineer
Global Moderator
*****
Offline Offline

Posts: 3858

Gravatar


« Reply #10 on: March 20, 2013, 02:32:35 PM »

I'm not sure why it's not working correctly for you, if you can provide FTP & login information, I can take a look at the code and try to see what I can do.

Afterthought - You may want to try adding the "more" tag in the page or defining actual excerpt text.  It may just not know where to break the text because you haven't told it what to do.
Logged

Tristan Rineer
------------
Shape 5 Team



- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF | SMF © 2013, Simple Machines
Joomla Bridge by JoomlaHacks.com
Valid XHTML 1.0! Valid CSS!
Looking for the largest variety in template designs? Look no more. Never buy 1 theme again. Signups start at just $89 for access to all of our themes.
Send Us An Email
Please send us your questions and we will email you back as soon as we can. Product support questions should be posted in our support forums under the Help menu. Our staff will assist you from there.