JungleSpace.net
Forum Replies Created
-
Forum: Plugins
In reply to: How to open a new window when a page is openedAny pop-up which was not click by user will be block by the browser pop-up blocker.
If you would still want to proceed, you can use javascript to trigger a click event when the page loads. You can search on Google using the term ‘javascript trigger click event on page load’.
Forum: Fixing WordPress
In reply to: problem uploading header imageWordPress uses the move_uploaded_file() function. In this case it is failing at this portion.
Several error types can happen. Here’s the list.
https://www.php.net/manual/en/features.file-upload.errors.php
Under the wp_handle_upload() function, you can use the print_r($_FILES) function to see the error. Place it after the move_uploaded_file() function is called and call the die() function next.
wp-admin/includes/file.php
Alternatively, you can install a 2nd WordPress to see whether it has the same issue.
Forum: Fixing WordPress
In reply to: How To Make Category Like This ???Here’s a documentation to tell you more about how post are displayed in a list.
https://codex.www.ads-software.com/The_Loop
Different themes have different approaches but the every theme should follow the same basic concept.
Forum: Plugins
In reply to: Using Shortcodes on Static Pages?It is possible to insert shortcodes into post and page.
If you need more information, you could visit the documentation here.
Forum: Fixing WordPress
In reply to: Why can't I see all my subscribers when I go to look at my users?Are you able to create a new user?
Forum: Fixing WordPress
In reply to: Site Redirection ?Perhaps what you were looking for is site linking on the HTML side. Here’s a tutorial page for you to attach a link.
Forum: Themes and Templates
In reply to: I cant see anything on my website when uploadedDoes your post have a Published status? You can see it on the right top sidebar when in editing mode.
Forum: Localhost Installs
In reply to: How a client can preview localhost site that is being developedWe would recommend installing WordPress on a hosting site and then uploading your work there.
Instead if you were to opened up your localhost to the internet, your computer might be exposed to a certain degree of security exploit. If you understand the risk and still prefer to proceed you can lookup on Google along the term ‘accessing xampp from the internet’.
You would need to secure xammp too by changing all the passwords.
Forum: Fixing WordPress
In reply to: How can i display the categories i want in checkbox ( ajax results)You can start by using Jquery. It is a javascript library which has an ajax function.
https://api.jquery.com/jQuery.ajax/
Your request needs to be send to https://www.domain.com/wp-admin/admin-ajax.php
Forum: Plugins
In reply to: User Provided Function Plugin?Can you give an example of an item and how this item was created on WordPress?
There’s probably no easy way than to find a plugin which already does that.
If you’re comfortable creating a plugin:
1. You can setup a query to a database to retrieve the result.
2. Display the result on the page by using shortcode/template.Forum: Fixing WordPress
In reply to: User can read one post onlyI would suggest looking for a subscription plugin.
Forum: Fixing WordPress
In reply to: Decreasing space/padding around headerYou can change the line-height property for #site-title, #site-description. Currently it is set to 150px;
Forum: Fixing WordPress
In reply to: error due to installation of any pluginCould you contact your hosting company to see if they have blocked the feature?
Forum: Fixing WordPress
In reply to: # in address bar after web pageThere’s a bunch of javascript errors for .com/wordpress/ while .com/wordpresstest/ does not have it.
Resource interpreted as Script but transferred with MIME type text/plain: “https://wlns.infusionsoft.com/app/form/iframe/997dd5a0ad3e080c282128ce3cf40e9e”. drscottdorrity.com:230
Unsafe JavaScript attempt to access frame with URL https://drscottdorrity.com/wordpress/ from frame with URL https://wlns.infusionsoft.com/app/form/997dd5a0ad3e080c282128ce3cf40e9e?iFrame=true&referrer=http%3A//drscottdorrity.com/wordpress/. Domains, protocols and ports must match.Seems that Optimize Press is causing the issue somewhere. Their javascript uses hashes in forming URL at several places in their code.
Since you did not redirect at your hosting panel, I can only think of the javascript performing the redirect after having a look at the network request.
You will get better support if you contact the Optimize Press developer.
Forum: Fixing WordPress
In reply to: Seems like my blog get hacked…Do use a password generator.
Is your WordPress the latest version?