ConCity
Forum Replies Created
-
The import wasn’t working so I always let it import on it’s on schedule. My YouTube notifies facebook and twitter when I upload so it’s convenient waiting a day to post it on my site because then it reposts to facebook and twitter.
I downloaded it. Got the destination file already exists error. I’ll rename and upload the new version. I’m going to be posting a video tonight so I’ll post back if that solved my troubles. Thanks great plugin!
3.0.6 i need the update.
I still have that problem and importing double posts
Same problem
Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menuNo need for apologies.
I went to your site and it was the default theme. I am using gamepress on my site and the only places I see dates are beside the posts. Is that what you are talking about wanting removed?If they do ask you to make a new thread for this make sure you use this format
[Theme: GamePress]~ your topic ~
Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menu@surfinkitty. What date are you referring to?
They may ask you to start a new thread for this since it’s a separate issue.
What’s your site’s URL and what version of wordpress are you using?
Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menuI deleted them completely, Then reinstalled.
Everytime I tried to overwrite I kept getting theme already exists.Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menudid you download it from his site?
https://webtuts.pl/themes/gamepress-en/
The version I got from there earlier is working fine.
https://www.theconfoundit.comDug into the functions and fixed it myself. Posting here incase anyone else wants to do the same.
I commented out the returns on excerptmore line 191 and the morelink on line 196.
Then added echo and the call to the permalinlink on line 212. Finished code is below.I also change the verbage from Read more. Read the remainder.
function gamepress_excerptlength_teaser($length) { return 20; } function gamepress_excerptlength_default($length) { return 40; } function gamepress_excerptmore($more) { global $post; //return '... <br /><a class="more" href="' . get_permalink($post->ID) . '">'.__('Read the remainder of this article', 'gamepress').' »</a>'; } function gamepress_morelink($more) { global $post; //return '... <a class="more_link" href="' . get_permalink($post->ID) . '">'.__('Read the remainder of this article', 'gamepress').' »</a>'; } function gamepress_excerpt($length_callback='', $more_callback='') { global $post; if(function_exists($length_callback)){ add_filter('excerpt_length', $length_callback); } if(function_exists($more_callback)){ add_filter('excerpt_more', $more_callback); } $output = get_the_excerpt(); $output = apply_filters('wptexturize', $output); $output = apply_filters('convert_chars', $output); $output = '<p>'.$output.'</p>'; echo $output; echo '... <a class="more" href="' . get_permalink($post->ID) . '">'.__('Read the remainder of this article', 'gamepress').' »</a>'; }
Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menunope still not working.
Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menuThe reviews, news, and videos widget isn’t working now either.
Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menuSame here also!
Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menuAwesome. It works now. Beautiful work!!!
*EDIT*
Thanks so much for fixing that!
*/EDIT*Forum: Themes and Templates
In reply to: [GamePress] [Theme: GamePress] Sub pages do not work in menuAny fix for this yet?