ustyne
Forum Replies Created
-
Forum: Reviews
In reply to: [Mega Menu by WooRockets.com] okhow did you get it to work. I can’t get pass add element and it will freeze.
Forum: Plugins
In reply to: [Authors Page] Is there any documentation on this?I installed the WP-Biographia and the Author page to help me create a page for roles. It worked well but when I click on individual account to see their bio it dose not show on pre-existing accounts but dose on newly created accounts. I have deactivated and change the install and activation process of both plugins but to no avail. I have disable and uninstall suspected plugins that could affect the 2 plugins yet nothing works. Has anyone come across this and how did you solve it is s?
I need helpIt’s suppose to look like this
https://csaaeinc.org/about-us/meet-our-emerging-nigerian-leaders/?author_login=CSAAEDemoBut it looks like this
https://csaaeinc.org/about-us/meet-our-emerging-nigerian-leaders/?author_login=Tanko%20Fto be more specific While in the
- Dashboard
- Select Jetpack
- in the first configuration option WordPress.com Stats
- Click Configure
- On Smiley Check Hide the stats smiley face image.
- Save Configuration
I hope this helps
Forum: Plugins
In reply to: [Recent Posts Widget Extended] thumbnail imagesSomeone had suggested Super recent posts and It worked great.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] thumbnail imagesI was overjoyed when i found this plugin but has been very disappointed since it has refused to show my featured image thumbnails. I have tried everything from uninstalling some media plugins to changing thumbnail sizes and more. Can someone tell me what am doing wrong here. Site is https://www.csaaeinc.org
Forum: Reviews
In reply to: [Twenty Twelve] Solid reboot and excellent base for future child themesI have have used and still use you “WordPress 3 Building Child Themes” video which the best out there for someone looking to design a theme from the scratch. I also use it as a reference to some things i want to apply. I have a website I designed from Twenty Eleven https://www.lernj.com as a child theme. I was able to make the featured photos of the Sticky post to transition. I will like to apply such feature on Twenty Twelve Child Theme for a photographic website. Do you have any idea on how to go about that. I thought just copying the java script and the showcase template will do the magic but it did not. Will be happy if you can help.
Forum: Fixing WordPress
In reply to: Header Menu not Linking On all browsers except IEI found the solution to my problem. The
<nav>
tag has to be enclsed by the<header>
tag. Am so happy now.Forum: Fixing WordPress
In reply to: Header Menu not Linking On all browsers except IEHere is the link https://pastebin.com/KgwpJhLt I have pasted the code on https://pastebin.com
Forum: Fixing WordPress
In reply to: Header Menu not Linking On all browsers except IEIt’still running local on my system.
Forum: Plugins
In reply to: [Facebook] Link your Facebook account to your WordPress-not enabling?@dnoe I used the default URL on the application if not that what should it be? Thanks in advance for your help.
Forum: Plugins
In reply to: [Facebook] Link your Facebook account to your WordPress-not enabling?I share the same issue with you. When I click on the Link your Facebook account to your WordPress account it gives me a
An error occurred with Lalibela Ethiopian Restaurant. Please try again later.
API Error Code: 191
API Error Description: The specified URL is not owned by the application
Error Message: Invalid redirect_uri: Given URL is not allowed by the Application configuration.I have doule checked avery aspect of the configuration and all seems very fine I don’t know why it will not work.
Forum: Fixing WordPress
In reply to: Fatal Error: Out of MemoryI call by hosting company and they told me I only have 16MB on the server that my files are being hosted so I asked them to upgrade it and that fixed the issue,
Forum: Your WordPress
In reply to: So done!, what do you thinkForum: Your WordPress
In reply to: So done!, what do you thinkThanks for the compliment KconleyK.
To create a horizontal menu on your footer or any other place on your page you will need to unregister the primary_nav on the child founctions.php then register as much nav_menu as you want. On the page where you want the menu to appear add this php line<?php wp_nav_menu( array( 'theme_location' => 'footer' ) ); ?>
where footer is the value in the argument.
From your Dashboard –> Appearance –> Menus Create new Menu list populate it and from the left pane assign the created menu to a specific nav_menu. I hope this broke it down for you but f you need more help maybe you need to look more into registering and un-registering functions in the functions.php page.
These link can also help
Forum: Fixing WordPress
In reply to: Make Twenty Eleven Footer area TransparentHere is what I did, here is the original footer.php
Below is how it should look on the twenty eleven theme</div><!-- #main --> <footer id="colophon" role="contentinfo"> <?php /* A sidebar in the footer? Yep. You can can customize * your footer with three columns of widgets. */ if ( ! is_404() ) get_sidebar( 'footer' ); ?> <div id="site-generator"> <?php do_action( 'twentyeleven_credits' ); ?> <a href="<?php echo esc_url( __( 'https://www.ads-software.com/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a> </div> </footer><!-- #colophon --> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>
Here is how it should look in your child theme
I moved the closing </div><!– #page –> above the <footer> opening tag, right below </div><!– #main –> tag
Then I created a new footer id below </div><!– #page –>
So it should look like this</div><!-- #main --> </div><!-- #page --> <div id="footerwrapper"> /* Create a new CSS to hold the footer DIV Close before the </body> tag Closing */ <footer id="colophon" role="contentinfo"> <?php /* A sidebar in the footer? Yep. You can can customize * your footer with three columns of widgets. */ if ( ! is_404() ) get_sidebar( 'footer' ); ?> <div id="site-generator"> <?php do_action( 'twentyeleven_credits' ); ?> <a>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a> </div> </footer><!-- #colophon --> <?php wp_footer(); ?> </div><!-- #footerwrapper --> </body> </html>
This is for WordPress twenty eleven theme