APRWebdesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: custom login page is overwritten after upgradeYou can create a plugin, this will prevent WordPress setting the login page to default.
see https://codex.www.ads-software.com/Writing_a_Plugin for more information.
read https://codex.www.ads-software.com/Customizing_the_Login_Form for more information on hot to customize the default login page.
you can also use a plugin to customize your login page.
https://www.ads-software.com/plugins/custom-login/
Hope this helps!
Kind regards,
Larsen
Forum: Fixing WordPress
In reply to: Parse error after updating pluginshi Sheila333,
Can you copy the entire code of class-hmbkp-path.php and paste the code in pastebin (https://pastebin.com/) and then post the link to the code here so i can check it out.
Kind regards,
Larsen
Forum: Fixing WordPress
In reply to: .htaccess file issue i thinkdid you try to reset the permalink structure?
set the permalink structure to normal and after saving change them back to / %category%/%postname%/
let me know
Larsen
Forum: Fixing WordPress
In reply to: Can't change eg.header pic: "are you cheating?"hi simpasam,
is it possible that the file permission is not correctly set up?
try changing the file permission of the multisite plugin folder to 755, if that is not working try setting it to 777
if this is not working can you tell me what plugin you are using?
Kind regards,
Larsen
Forum: Fixing WordPress
In reply to: .htaccess file issue i thinkare the permalinks under settings set to / %category%/%postname%/ ?
Larsen
Forum: Fixing WordPress
In reply to: .htaccess file issue i thinkHi jhulott,
Have you checked your functions.php file if there is any white space at the end of the file?
if so, remove all white space after the last closing tag in the functions.php
This could be a reason why the internal server error accrues
Hope this helps!
Kind regards,
Larsen Busch
Here is a quick fix:
$FSREPSearch is set to “S”. $FSREPSearch is fine until line 147 of define.php at which point it gets set to the value of $FSREPSearch[‘query’]. Commenting out line 147 of define.php fixes search for me.
so to be short:
-Open define.php of the firestorm plugin.
-go to line 147
-remove this line : if (isset($FSREPSearch[‘query’])) { $FSREPSearch = $FSREPSearch[‘query’]; }
-save the file
– Search works!Kind regards,
APR Webdesign
Here is a quick fix:
$FSREPSearch is set to “S”. $FSREPSearch is fine until line 147 of define.php at which point it gets set to the value of $FSREPSearch[‘query’]. Commenting out line 147 of define.php fixes search for me.
so to be short:
-Open define.php of the firestorm plugin.
-go to line 147
-remove this line : if (isset($FSREPSearch[‘query’])) { $FSREPSearch = $FSREPSearch[‘query’]; }
-save the file
– Search works!Kind regards,
APR Webdesign
Forum: Plugins
In reply to: Catablog product pageshy there,
i hope someone will read this for a quick solution cause it had keep me busy for days.
to display a archive page and a singe product page u have to insert the shortcode
[catablog template=archive] to your page where you want to show your product archive’s
IMPORTANT:
go to wp-admin -> catablog -> options -> public-> and Enable Individual Pages and Category Archives:and then you create single-catablog-items.php and add it to your template folers ( wp-content/theme/yourtheme)
inside the single-catablog-items.php page you past the wordpress loop :
<?php
get_header();
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
get_sidebar();
get_footer();
?>now your catablog page will show the archive and when u click the permalink you will be taken to the product details page.
Forum: Plugins
In reply to: [CataBlog] create individual product pageshy there,
i hope someone will read this for a quick solution cause it had keep me busy for days.
to display a archive page and a singe product page u have to insert the shortcode
[catablog template=archive] to your page where you want to show your product archive’s
IMPORTANT:
go to wp-admin -> catablog -> options -> public-> and Enable Individual Pages and Category Archives:and then you create single-catablog-items.php and add it to your template folers ( wp-content/theme/yourtheme)
inside the single-catablog-items.php page you past the wordpress loop :
<?php
get_header();
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
get_sidebar();
get_footer();
?>now your catablog page will show the archive and when u click the permalink you will be taken to the product details page.
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] PERMALINKS Pages Are Blankhy there,
i hope someone will read this for a quick solution cause it had keep me busy for days.
to display a archive page and a singe product page u have to insert the shortcode
[catablog template=archive] to your page where you want to show your product archive’s
IMPORTANT:
go to wp-admin -> catablog -> options -> public-> and Enable Individual Pages and Category Archives:and then you create single-catablog-items.php and add it to your template folers ( wp-content/theme/yourtheme)
inside the single-catablog-items.php page you past the wordpress loop :
<?php
get_header();
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
get_sidebar();
get_footer();
?>now your catablog page will show the archive and when u click the permalink you will be taken to the product details page.
Forum: Fixing WordPress
In reply to: [Need Help ] How to insert wp loop in custom template?yes this is my index.php file of my theme
i”ll try the things u told me tomorrow and then i”ll post the results
thanks for your help and patient
Forum: Fixing WordPress
In reply to: [Need Help ] How to insert wp loop in custom template?This is the link of pastebin https://pastebin.com/NP6GU6Ya
I have inserted your code but it is still not working…
The website address is https://het-kookboek.nl
Sorry for my ignorance but i need this to work for a client only the problem is a am a complete noob in wordpress
Forum: Fixing WordPress
In reply to: [Need Help ] How to insert wp loop in custom template?can someone please help me with this..
cause i am trying and trying but i just can”t get it to work
Forum: Fixing WordPress
In reply to: [Need Help ] How to insert wp loop in custom template?I dont understand pastebin.com
but here is my code
[code moderated as per Forum Rules- please use the pastebin]
The thing i want to do is do display the text of the page i created in the wysiwyg editor
I want the text to show up inside this div --><div id="entry-area"> <!--###INHALT### Start--> <!--###INHALT### Stop--> </div> </div> <!-- end main div -->
I just don't understand how i have to insert the loop..
Can someone give me a ready to copy example to use?
The only thing i want to display is the page text.. The page title in anchor is optional but not necessary
Thanks in advance