JungleSpace.net
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: change the site url from temporary one to the domainWhen you bought the postgaming.com from a company, they provide you with the domain control panel where you can set your DNS nameserver address which is an address pointing to your hosting server.
The DNS nameserver address is provided by your hosting company. Use this value and enter it into your domain control panel where it says nameserver. Your hosting company would be able to assist you with that.
Forum: Installing WordPress
In reply to: The webpage cannot be found – What next?Can you create a new folder like
darwinuriel.us/test
Put a photo into that folder and see it you are able to view it on the internet.
Forum: Installing WordPress
In reply to: New hosting = websites now not showing content fullyDo mention which WordPress version you are using. WordPress has been working with PHP5 for more than a year already.
Your website designer could provide you with a better insight on whether the theme or plugin which is being used to deploy the site supports PHP5 because there are functions on PHP4 which were deprecated in PHP5.
Forum: Installing WordPress
In reply to: Switching to WordPress while keeping site active@shortdivision, sorry didnt realise your post was being used by another member.
@stegadmin, creating a new post/thread for your issue is better because you wouldnt want to spam the original post owner with unrelated email notifications. do create a new thread and post a follow-up link here. thanks.
Forum: Installing WordPress
In reply to: Switching to WordPress while keeping site activeI’m abit confuse with your latest post which is the opposite of what you wanted to do in the first post.
I think it is better to summarize it up and put it in bullet form.
What do you want to do with the old site?
–
–What do you want to do with the new site?
–
–Forum: Fixing WordPress
In reply to: User/Customer Management – best method?Yes use the same table and create new roles (customer and employee).
https://codex.www.ads-software.com/Function_Reference/add_role
If you view some of the values in the wp_usermeta table, you will get the sense of how it is being used. The user first name, last name and nickname are all stored per row in that table.
Therefore you can use the add_user_meta function to create specific user property like country and attach it to a particular user id.
Forum: Fixing WordPress
In reply to: Why can't I see all my subscribers when I go to look at my users?Are you using any plugins that has effect on the users?
It is difficult to tell on the surface what is the underlying issue. You would need to place some debug code. Firstly in
wp-admin/includes/class-wp-users-list-table.php
In the prepare_items() functions, locate the line,
$this->items = $wp_user_search->get_results();
Add these code after the line above;
echo "<pre>"; print_r($this->items); echo "</pre>"; die();
Save and open the user list page in the control panel. It will print out the variable value, check whether all your subscribers are returned.
Forum: Plugins
In reply to: Using Shortcodes on Static Pages?Then you would directly call the function which was registered to the shortcode in your index.php. Example below.
`
//[foobar]
function foobar_func( $atts ){
return “foo and bar”;
}
add_shortcode( ‘foobar’, ‘foobar_func’ );
`Call foobar_func($arg) in your index.php
Forum: Themes and Templates
In reply to: Custom template not allowing linksIn child css:
for width – try set to auto;
for margin-right – set to 0;Forum: Plugins
In reply to: User Provided Function Plugin?Here’s the starting point for accessing the database. Forget about the form 1st. Try to retrieve the result using the WPDB class.
In your function declare the global variable wpdb;
global $wpdb;
$result = $wpdb->get_var('SELECT status FROM.... WHERE product_id = %s LIMIT 1', $product_code);
Forum: Fixing WordPress
In reply to: Border radiusThe list element should be displayed in block/inline-block;
Forum: Fixing WordPress
In reply to: How To Make Category Like This ???Unfortunately, if you’re looking for a full code customization, the better site to seek help is on the Job Board.
Forum: Themes and Templates
In reply to: Custom template not allowing linksRemove the following from .container {width, margin-right}.
Set .primary {margin-left: 0}Forum: Fixing WordPress
In reply to: "Preview" different than "Visual Editor" shows.The template still governed how it will look at the end.
The visual editor has to be general enough to support the wide choices of themes and a standard user experience. Therefore you have the Preview button.
Forum: Fixing WordPress
In reply to: User/Customer Management – best method?For simplicity, you can use the add_user_meta() function.
https://codex.www.ads-software.com/Function_Reference/add_user_meta