bodidley
Forum Replies Created
-
Forum: Plugins
In reply to: [AzonBox] Doesn't seem to work.Sorry but nothing is there. I’m sure it is activated.
Forum: Plugins
In reply to: [Amazon Product in a Post Plugin] How do I display large images?Great that works. Thank you!
Forum: Fixing WordPress
In reply to: Help with Child Theme 101you could try setting an absolute path.
IF BEFORE
<link rel="stylesheet" type="text/css" href="style.css" />NOW:
<link rel="stylesheet" type="text/css" href="http://host/path/to/style.css" />replace host/path/to with the correct location for your child theme css file.
then add an include statement in child theme index.php
such as
<?php include ("html/yourfilenamehere.html"); ?> <?php include ("php/klasik-latestnews-widget.php"); ?>all of this is done in the child theme.
[Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]
Forum: Fixing WordPress
In reply to: Help with Child Theme 101Forum: Fixing WordPress
In reply to: Help with Child Theme 101If a function in the parent theme is pluggable, it allows you to copy a function from the parent theme into the child theme’s functions.php and have it replace the one in your parent theme. The only requirement is that the parent theme’s function is pluggable, which basically means it is wrapped in a conditional if statement e.g:
if (!function_exists("parent_function_name")) { parent_function_name() { ... } }If the parent theme function is pluggable, you can copy it to the child theme functions.php and modify the function to your liking.
Forum: Fixing WordPress
In reply to: Same post title same perms link!You can click the permalink and edit it in the post editor and then save.
It is right below the title.
Forum: Fixing WordPress
In reply to: Help with Child Theme 101it will most likely break it yes and if it breaks the site then go back in and delete it. It would only be but a minutes time worth of effort. But it has worked for me once.
Forum: Fixing WordPress
In reply to: Random Text on top left of all pagesMy best guess is it’s caused by a bad/outdated plugin. Try deactivating all plugins and reactivating one by one being sure to clear your browser cache each time you reactivate one.
You might want to try some javascript debugging.
Do you have some type of pinterest plugin?
Also do a search/find in the <body> tags for that text as it might be living there.
Forum: Fixing WordPress
In reply to: Help with Child Theme 101Try creating a blank page called functions.php for the child theme. That worked for me with a similar problem.
I have another site where I had to copy the actual functions.php over to the child theme.
And another one where I had to make a functions.php with this code in it to call the jquery…
<?php function mh_load_my_script() { wp_enqueue_script( 'jquery' ); } add_action( 'wp_enqueue_scripts', 'mh_load_my_script' ); ?>It can’t hurt to try either of those but make sure you don’t delete or alter your original functions.php or it might break your site.
And as always do a backup first just in case. Good luck.
Forum: Plugins
In reply to: Mashshare doesn't show up on Pagebuilder pagesSilly me I just placed the shortcode and it worked fine. it in a text widget
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Widget editor blank after update to 2.0.7bolt24 I can’t see anything in the editor but red squiggly lines in visual and a blank screen in text editor. I can’t edit any posts or pages! Can you?
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Widget editor blank after update to 2.0.7I am having the same problem. Someone pretty please help us.
I changed the table prefix in wp-config and it gave me a new error ‘object not found’
Can you please elaborate? the table prefix in the db I am uploading is wp_fghg_ so is that what I put in wp-config?
I didn’t realize this before but it turns out that I needed to copy the updraft folder from my old install into wp-content folder of my new install. Then Updraft can recognize them when you click -restore an Updraft unzips it for you.
Otherwise you would need to unzip the file and then restore each one individually which would take forever.