abzu2
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Elucidate] changing Theme Header codeResolved by adding the code:
<?php wp_head(); ?>
<?php do_action( ‘add_head_attributes’ ); ?>
</head>Forum: Plugins
In reply to: [Simple Blog Stats] only shortcode text displayed on sidebar widgetThank you for your kind reply. The suggested addition to the functions.php file solved the issue.
Forum: Plugins
In reply to: [Simple Blog Stats] only shortcode text displayed on sidebar widgetThank you for your kind suggestion. Being a HTML ignoramus I would appreciate if you could tell me EXACTLY where I should insert the suggested line in my functions.php file.
At the top I have:
<?php function elucidate_byline() { printf( __( 'Posted by', 'elucidate' ) . ' ' . '<span class="author vcard"><a href="%1$s">%2$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_html( get_the_author() ) ); } if ( ! function_exists( 'elucidate_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which runs * before the init hook. The init hook is too late for some features, such as indicating * support post thumbnails. */ function elucidate_setup() { /**
At the bottom:
/** * Enable support for Post Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'quote' ) ); /** * Setup the WordPress core custom background feature. */ add_theme_support( 'custom-background', apply_filters( 'elucidate_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // elucidate_setup add_action( 'after_setup_theme', 'elucidate_setup' );
Forum: Plugins
In reply to: [Simple Blog Stats] only shortcode text displayed on sidebar widgetWeird. I have uninstalled SBS and re-installed it. Logged out of my site after uninstalling and reinstalled after logging back in. Just in case. Problem still persists.
I have used SBS for some time without any problem on a Child theme of Elucidate. Therefore doubt that it could be a theme related issue. ??- This reply was modified 7 years, 4 months ago by abzu2.
Forum: Plugins
In reply to: [Simple Blog Stats] only shortcode text displayed on sidebar widgetTried restoring to default/saved settings/ deactivated/ activated. Problem persists. ??
Forum: Plugins
In reply to: [Simple Blog Stats] only shortcode text displayed on sidebar widgetAs a test, I deactivated the plugins that I thought might have some conflict with SBS:
> Stats Counter
> Slimstat Analytics
> Post Views Counter
> Official StatCounter Plugin
Problem persisted.
Viewing the information on the SBS settings, everything appeared to be correct.
Using the shortcode: <span class=”sbs-count-posts”>[sbs_posts]</span>
and entering the shortcode both in a text and a Custom HTML widget it fails to solve the [sbs_posts] text only issue.
Fail to see any SBS Dashboard Widget either in the available widgets in Dashboard> Appearance> Widgets or in Dashboard.Question: If I reset SBS to default, I assume it will delete my current data, however, will it appear again afterwards ??
- This reply was modified 7 years, 4 months ago by abzu2.
Forum: Plugins
In reply to: [Simple Blog Stats] only shortcode text displayed on sidebar widgetThank you for your quick reply. Simple Blog Stats Version 20171103
Any known conflicts with your plugin and:
> Stats Counter
> Slimstat Analytics
> Post Views Counter
> Official StatCounter PluginForum: Fixing WordPress
In reply to: investigating source of SERVICE UNAVAILABLE errorThanks. Will do. Both sites are on different hosts, but there must be a common issue.
- This reply was modified 7 years, 5 months ago by abzu2.
Forum: Localhost Installs
In reply to: Query concerning empty WP database on a subdomainSolved. Disregard my last post.
Forum: Localhost Installs
In reply to: Query concerning empty WP database on a subdomainAccording to my wp-config.php file
define(‘DB_NAME’, ‘farabove_wpx’)
which is the one that is emptyForum: Localhost Installs
In reply to: Query concerning empty WP database on a subdomainThank you very much for your kind reply.
Forum: Localhost Installs
In reply to: Query concerning empty WP database on a subdomainThanks for the reply. After having created the subdomain on a non WP site, I used the Softaculous app installer to install WP. Looks like that may be the cause to the empty tables in the database I created for the subdomain installation of WP. My question is: If the database for the files created for the WP site is not where it should be, where is it ? Plan to migrate the WP site to the root and replace the current non WP site in order to maintain the current URL
Thanks for the kind reply and clarification.
Thanks for the reply. Add Link To Copied Text does not have the option to include the featured image. As an example of the plugin I am looking for is what is displayed at the end of the post:
Source:
https://www.abzu2.com/2017/03/24/the-rough-but-delicate-road-to-unity-consciousness/* Displayed after I copied and pasted the URL of the original post from https://in5d.com/ onto my site.
TIA
Forum: Themes and Templates
In reply to: [Elucidate] morse code text issueSolved by commenting out all lines 98-99, 176-182 and 268-270 in the file formatting.php in the wp-includes folder.
Problem re-posted in How-To and Troubleshooting < Customisation of WP autocorrect function >