Shape 5

Wordpress Club Themes => Simplex - Club => : airk July 30, 2012, 09:22:39 AM



: Simplex is very buggy...
: airk July 30, 2012, 09:22:39 AM
This one for example...

At the end of post after "Tagged", I'm not even sure what it is supposed to be:

:
<a title="<span data-post_id="9" data-type="input" data-filter="the_title" class="fee-field">
My Article Title</span>" href="http://www.mysite.net/my-article-title/" class="readon readmore readmore-link">Read more...
</a>


Other thing  - "Insert image into the post" doesn't work at

 :(


: Re: Simplex is very buggy...
: airk July 30, 2012, 09:30:22 AM
Well, I see

This is what the_title() returns:

:
<span data-post_id="9" data-type="input" data-filter="the_title" class="fee-field fee-initialized">My Article Title</span>

 :)


: Re: Simplex is very buggy...
: Tristan Rineer July 30, 2012, 09:31:59 AM
It appears that you are using a plugin that alters article titles.  I can't observe the problem without a URL to look at.

If you provide a URL I will take a look and see if I can figure out what plugin is conflicting.


: Re: Simplex is very buggy...
: airk July 30, 2012, 09:37:59 AM
Naah, only plugins I have are those installed by simplex itself

Well, apparently the_title needed FALSE as a third parameter

:
<?php if(! is_singular()){ ?><a title="<?php the_title(''''FALSE); ?>" href="<?php the_permalink(); ?>" class="readon readmore readmore-link">Read more...</a><?php ?>

:)

Usage

 <?php the_title( $before, $after, $echo ); ?>

Parameters
$before
(string) Text to place before the title. Defaults to ''.
$after
(string) Text to place after the title. Defaults to ''.
$echo
(Boolean) Display the title (true) or return it for use in PHP (false). Defaults to true.


: Re: Simplex is very buggy...
: Tristan Rineer July 30, 2012, 09:41:59 AM
Is the problem solved now?  If so, thanks for finding the bug & solution.  I will go ahead and update the downloads with the fix as soon as you've responded back with confirmation.


: Re: Simplex is very buggy...
: airk July 30, 2012, 10:07:20 AM
This particular issue seems to be resolved