elisabetha
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: White screen AdminMaybe you have had an automatic update.
I twice had the white screen after a first install. Then I had to manually upload WordPress. I only left hte existing wp-config and uploaded and overwrote all other files. I even had to do it twice and then everything worked again. Like the was a bug when uploading.Forum: Fixing WordPress
In reply to: is it possible with wordpress??You should install WordPress and create the homepage.
You can find info about that.
You can use the deafult layout without programming.
Then you must look for a plugin that creates a login page, like Plugin Theme My Login.
For WordPress you yourself login as administrator, but you can create more users with less rights. They can e.g. write to a page or only read. Your complication is that a doctor and a patient must look at the same page. I’m sure there will be a plugin. Just look on the internet for WordPress, plugin and check it out.Forum: Fixing WordPress
In reply to: How to Remove Header for multiple pages?You should not add the code I wrote down. You must remove the code that creates the header. For your theme that might look different then for my theme. NOTE: only in the template that you use for a page without a header and not for the template for a page with a header!
Forum: Fixing WordPress
In reply to: Impossible uploading Themes and PluginsDo you get an error message? I remember I had a message showing the temp file couldn’t be created.
I found a solution on http://ww.wp.xz.cn/support/topic/pclzip_err_missing_file-4-missing-archive-file-cwindowstempwordpress-3
I had to enter a line to wp-config:
define(‘WP_TEMP_DIR’, ABSPATH . ‘wp-content/TEMP’);
and then I could install plugins again.Forum: Fixing WordPress
In reply to: Php problem in wp pagesMaybe this helps:
http://stackoverflow.com/questions/1100354/how-can-i-echo-html-in-phpForum: Fixing WordPress
In reply to: How to Remove Header for multiple pages?You can make a copy of the php you work with and place it in the themes folder. Or better make a child of the thems folder so it won’t be overwritten with an update of the theme.
Then in the copy you change the title:
<?php
/*
Template Name: new name
*/In this copy you remove the oce that creates the header. This depends on the theme you use. It might be something like
<div id=”gazpo-nav”>
<?php wp_nav_menu( array( ‘container_class’ => ‘main-menu’, ‘theme_location’ => ‘header_menu’ ) ); ?>
</div>And you base the pages that don’t need the header on this template.
Forum: Fixing WordPress
In reply to: Change text in search widgetNormally there will be a search.php that you can edit. You might want to make a child of it first.
Forum: Fixing WordPress
In reply to: Childs child of parent categoryI don’t know exactly if this hleps, but maybe you must look the other way, so not grandchild but grandparent. I used this for showing titles:
<?php //variables
$grandparent = $parent->post_parent;
$grandparent_title = get_the_title($grandparent);
;?>Forum: Themes and Templates
In reply to: [Sonar] menu dropdown onclickI adjusted the hyperlink in the menu to “#” and moved the original page one step below. Now a click opens the menu.
Forum: Themes and Templates
In reply to: [Sonar] menu dropdown onclickI tested it on a Nokia. It doesn’t convert to a click. That would be great though if that worked.
When I press the link for just the right amount of time however, it unfolds. Prrobably that is what you mean?
The site is http://www.ic2.com.Forum: Plugins
In reply to: [Multiple content blocks] search form in multiple content blocksYes, Search every custom field (metadata) is sufficient.
Forum: Plugins
In reply to: [Multiple content blocks] search form in multiple content blocksYes! That works. In the settings I have to select some fields and set them to ‘yes’ an dnow also the content of the multiple content blocks are searched on.
I found it in wp-content\plugins\pronamic-cookies\views\blocker.php
Forum: Plugins
In reply to: polylang 404 page in 2 languagesI solved it like this in 404.php:
<p><?php $taal=pll_current_language($value);?>
<article id=”post-0″ class=”post error404 not-found”>
<h1 class=”entry-title”>
<?php if ($taal ==”nl”) {
echo “Niet gevonden” ;}
?>
<?php if ($taal ==”en”) {
echo “Not Found” ;}
?></h1>etc.
Forum: Plugins
In reply to: polylang 404 page in 2 languagesThanks. However, in my theme Sonar there’s 1 php in English which always comes up, also when I’m visiting a Dutch page. When I try to create a page called 404 to link it to 404_dutch.php this won’t work.