BenLinders
Forum Replies Created
-
Free version
Forum: Plugins
In reply to: [Mooberry Book Manager] Wrong link generated for “tag”Settings, permalinks, save didn’t solve the problem.
Where an I sent the screen shot?
It says:
NOTE: WordPress reserved terms are not allowed here. See a list of reserved terms.
Genre
genre
Tagbook-tag
Seriesseries
Editoreditor
Illustratorillustrator
Cover Artistcover-artist
Some weeks ago I activated secure access via https. But the general settings still used http for the home URL and wordpress URL. Changing them to https solved the problem 🙂
Thanks Claude!
@claude: I’m having the same problem:
An error has occured while updating the access token, please try again.
Error message: missing required parameters, includes an invalid parameter value, parameter more than once. : Unable to retrieve access token : appId or redirect uri does not match authorization code or authorization code expired (invalid_request)It’s persistent for over a week. Creating a new API didn’t work.
Any suggestions?
Forum: Plugins
In reply to: [WordPress Instant Articles by allfacebook.de] Setting the kickerThanks Hendrik.
Meanwhile I found out that you can modify the kicker quite easily on FB before publishing. I’m using that, see how that works for me.
Alternatively I might add the filter in the future.
Ben Linders
Forum: Plugins
In reply to: [News Manager] Show news items in blogrollApparently it took some time for the CDN to pick up the changes. News is now visible.
Only problem is that the Mantra theme shows my posts in columns and news items do not have the column format. But I’ll figure that out.
Thanks for your help!
Forum: Plugins
In reply to: [News Manager] Show news items in blogrollI added it to functions.php, but I see no difference.
My news in http://www.benlinders.com/news/ doesn’t show up in the blog roll at http://www.benlinders.com/.
I emptied my caches, no difference.
Anything I can try to debug this?
Ben Linders
Forum: Plugins
In reply to: [News Manager] Show news items in blogrollThanks for your help!
Where do I add this code, which file?
Forum: Themes and Templates
In reply to: [Mantra] Call to undefined function get_header()Yes, the site does load so it doesn’t seem to be a big problem. I’m hoping on people from Cryout creations to react, as it’s their theme Mantra.
Forum: Themes and Templates
In reply to: [Mantra] Call to undefined function get_header()I’m trying to get this. Should there be a header function somewhere? How bad is it when this error occurs?
Forum: Themes and Templates
In reply to: [Mantra] Call to undefined function get_header()Really appreciate your help.
The website loads and looks ok, but I’m trying to get rid of error messages in the log file. That’s why I’m wondering where the get_header() would normally go?
Forum: Themes and Templates
In reply to: [Mantra] Call to undefined function get_header()yes, in the main directory of the site. Guess that’s where it should be?
Forum: Themes and Templates
In reply to: [Mantra] Call to undefined function get_header()The errors message comes from this file, line 14 in /storage/web/public/sites/www.benlinders.com/wp-content/themes/mantra/index.php
Which is a call to get_header();
Question is where to find get_header(). Normally it should be in header.php, right? I checked, it’s not in there.
Forum: Themes and Templates
In reply to: [Mantra] Call to undefined function get_header()Here it is:
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package Cryout Creations
* @subpackage Mantra
*/
get_header();
if ($mantra_frontpage==”Enable” && is_front_page() ):
mantra_frontpage_generator();
if ($mantra_frontposts==”Enable”): get_template_part(‘content’,’frontpage’); endif;
else:
?>
<section id=”container”><div id=”content” role=”main”>
<?php cryout_before_content_hook(); ?><?php if ( have_posts() ) : ?>
<?php mantra_content_nav( ‘nav-above’ ); ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?><?php get_template_part( ‘content’, get_post_format() ); ?>
<?php endwhile; ?>
<?php if($mantra_pagination==”Enable”) mantra_pagination(); else mantra_content_nav( ‘nav-below’ ); ?>
<?php else : ?>
<article id=”post-0″ class=”post no-results not-found”>
<header class=”entry-header”>
<h1 class=”entry-title”><?php _e( ‘Nothing Found’, ‘mantra’ ); ?></h1>
</header><!– .entry-header –><div class=”entry-content”>
<p><?php _e( ‘Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.’, ‘mantra’ ); ?></p>
<?php get_search_form(); ?>
</div><!– .entry-content –>
</article><!– #post-0 –><?php endif; ?><?php cryout_after_content_hook(); ?>
</div><!– #content –>
<?php get_sidebar(); ?>
</section><!– #container –>
<?php
endif;
get_footer(); ?>Forum: Themes and Templates
In reply to: [Mantra] Call to undefined function get_header()Yes, in the Mantra theme directory:
http://www.benlinders.com/wp-content/themes/mantra/
And no, I didn’t change the header.php file