tymax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 403 no permission, help??Sounds like drawing_straight_line.zip has the wrong read/write permissions or could have the wrong user:owner set. Just contact your host they will fix it for you.
Forum: Fixing WordPress
In reply to: Add Javascript?Child theme, if u update the theme them it will get overwritten but the child theme wont
Forum: Fixing WordPress
In reply to: Removing Theme CreditsI dont know about the theme bit find footer.php file and search for the text you want to remove if you cant then search the functions.php file it will be somewhere in your theme. If u have a child theme then the directory “should” have ‘-child’ in the name.
Forum: Fixing WordPress
In reply to: Add Javascript?Proper way as you have there at the end of ur post is to enqueue the script. This make sure things like jQuery that some scripts rely on loads first, if u used jQuery and added the script to the header instead of enqueue it wouldn’t work.
Easiest was is to just and those scripts to the bottom of the footer. You can just use <script> tag.
Forum: Fixing WordPress
In reply to: How to fix the directory URLCreat a .htaccess file in the directory and add below code.
Options -IndexesForum: Fixing WordPress
In reply to: Protocal when setting up website – have I goofed?No that’s fine you can just leave it as is.
Forum: Fixing WordPress
In reply to: Form Submit $_POST empty when field value is a urlGot me stumpt.. at least you are at 5.4 now. WP is updated I guess. If you figure it out let us know..
Forum: Fixing WordPress
In reply to: Form Submit $_POST empty when field value is a urland I assume this is basically what you template looks like?
<?php get_header(); /* Template Name: MyTemplate */
if(isset($_POST)) {
print_r($_POST);
}get_footer(); ?>
That should work fine so I am not sure what is happening, be interesting to know what is causing it. Delete get_header() and see what happens
Forum: Fixing WordPress
In reply to: Form Submit $_POST empty when field value is a urlStrange, you sure you have errors set to display in the config file? (WP_DEBUG set to true)
have a look here they seemed to fix it replacing the wp-includes/functions.php file
So it seems it can’t find wp_json_encode() function. What kind of directory is this /home/content/s/t/e/ ? it should tell you the file and line number of where it is.
Forum: Fixing WordPress
In reply to: How to allow user to create tablesReally no plugins for tables? the main reason would be all new websites now should be responsive and tables would break that. You can make responsive tables but there is more too it. So flexible divs are more common. If you can use the DIV then try something like perfect-columns plugin..
Forum: Fixing WordPress
In reply to: Form Submit $_POST empty when field value is a urlfigure it out? if not post the PHP code in the page template it is posting too..
Forum: Fixing WordPress
In reply to: Form Submit $_POST empty when field value is a urlsounds like the .php file in the action cannot be found if I understand correctly…
Forum: Fixing WordPress
In reply to: PHP CountBe good to see all the code then we could fig out what you are actually doing 🙂