Niall Madhoo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t remove front page slug (.com/home) in siteHello @devoids,
How have you set up your home page under Settings > Reading inside your WordPress Admin dashboard? Does it look something like this:
If it was not set up this way, the URL will display as http://www.domainname.com/home for the Home page found under Pages > All Pages.
Otherwise, there may be something in your theme or a plugin that may be causing this behavior.
When you enter http://www.domainname.com/, does it redirect to http://www.domainname.com/home?
Forum: Everything else WordPress
In reply to: Create hyperlink in footerHello @oyougu,
Could you please try the following code, which will allow you to style the link if you need it using the
.gallery-linkclass:<div class=”widget-column-2″> <h5><?php if( of_get_option(‘ourservicestitle’) != ”){ echo of_get_option(‘ourservicestitle’);} ?></h5> <?php if( of_get_option(‘servicesarea’) != ”) {echo do_shortcode(of_get_option(‘servicesarea’)); } ?> <?php if( function_exists( ‘envira_gallery’ ) ) { envira_gallery( ‘635’, ‘slug’ ); } ?> <div class=gallery-link> <?php echo '<a href="https://www.oyougu.com/" target="_blank" title="' . esc_attr__( 'Footer gallery link', 'oyougu' ) . ' >' . esc_html__( 'Footer gallery link', 'oyougu' ) . '</a>.'; ?> </div> </div>Forum: Everything else WordPress
In reply to: Mega Menu CSS code showing after Footer tagYou’re welcome, Judy! Glad you managed to fix it!
Forum: Fixing WordPress
In reply to: How to change the domain of a website.I am not familiar with GoDaddy’s hosting, as I haven’t used it for years. On other similar hosting services, there was no issue with reinstalling WordPress on the hosting domain. I only had a problem when I needed to change the domain itself for the hosting account, as I wanted to use a different one.
Yes, I agree, it’s better to contact GoDaddy’s support, as they should know their platform better than anyone.
Forum: Everything else WordPress
In reply to: Change (or reset) Meta (Admin) WidgetYou’re welcome, and thank you!
Forum: Everything else WordPress
In reply to: hyperlink settings “gear” symbol blocks editingYou’re welcome, Paul!
If your question has been answered, it would be great if you would mark this topic as resolved in the sidebar. This helps the forum’s volunteers find the topics that still need attention and more people will get helped, possibly like you did.
Forum: Fixing WordPress
In reply to: hide or remove table of contentHello Japie,
You’re very welcome! Glad you managed to disable the Table of Contents.
Best,
NiallForum: Everything else WordPress
In reply to: Mega Menu CSS code showing after Footer tagHello @judygordon,
Were you trying to align the menu items to the center of the header, as that’s what the CSS code is supposed to do?
I recommend looking for a section inside the WordPress Admin dashboard that allows you to add code to the site’s footer. The
#mega-menu-wrap-rt-theme-main-navigation #mega-menu-rt-theme-main-navigation{ text-align:center !important; }seems like it may have been added to such a section. That explains why it appears on every page. I wonder whether this code might be in your functions.php file?If not, I noticed that your site uses the RT-Theme 18. The code on your site’s footer is part of the theme’s styles. This code styles the WP Mega Menu Plugin: https://ww.wp.xz.cn/plugins/wp-megamenu/.
If you use a commercial theme like RT-Theme 18 and need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations. You can find support for it here: https://themeforest.net/item/rttheme-18-responsive-wordpress-theme/7200532/support.
Forum: Fixing WordPress
In reply to: Submenu ItemsHello @mrcuta,
If you use a commercial theme like Cislen and need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations. You can find support for it here: https://themeforest.net/item/cislen-woocommerce-theme-for-furniture-store/24422521/support
Forum volunteers are also not given access to commercial products like the Cislen theme, so they would not know why it is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors, in this case Fami_Themes. They are responsible for supporting their commercial product.
Forum: Fixing WordPress
In reply to: hide or remove table of contentHello @japiejooo,
I looked through your site’s code using my web browser’s developer tools, and it seems the “Table of Contents” was created by the Essential Addons for Elementor plugin: https://ww.wp.xz.cn/plugins/essential-addons-for-elementor-lite/.
I recommend following these steps to disable the “Table of Contents”:
- Edit your home page with Elementor
- Go to “Page Settings” at the bottom of the Elementor panel
- Click on “Enable Table of Contents” to disable the feature
Here’s a link to the plugin’s documentation about its “Table of Contents” feature if you’re interested: https://essential-addons.com/elementor/docs/table-of-content/.
Forum: Everything else WordPress
In reply to: hyperlink settings “gear” symbol blocks editingHello @pvercruysse2015,
Paul, after the WordPress 5.5 update, some themes and plugins that use older code may not work correctly. The errors that my browser’s developer tools are showing suggest that your theme or a plugin is causing the problems you’re having.
A temporary fix is to install and activate the following plugin to give time for the theme’s and plugin’s developers to possibly update their code: https://ww.wp.xz.cn/plugins/enable-jquery-migrate-helper/.
Forum: Everything else WordPress
In reply to: Change (or reset) Meta (Admin) WidgetYou’re welcome! Happy to help!
In that case, I hope you can help someone else with a WordPress problem they’re having. 😉
Speaking of which, if your question has been answered, it would be great if you would mark this topic as resolved in the sidebar. This helps the forum’s volunteers find the topics that still need attention and more people will get helped, possibly like you did.
Forum: Fixing WordPress
In reply to: How to change the domain of a website.Thanks for the clarification!
In that case, I suggest you have back ups of all the sites AND of your hosting account. GoDaddy should have a guide for how to do that.
Then install WordPress using Softaculous on cPanel or Plesk (depending on your hosting package). This method should be safe, as long as you enter the correct domains and details during the installation process. GoDaddy has guides on how to do this: https://godaddy.com/help/install-wordpress-26994
There is also the option for a manual installation. Care must be taken for this method so that none of the other sites under the /public_html/ folder get deleted or changed by accident. See the following guide on how to install WordPress manually:
Forum: Fixing WordPress
In reply to: Site TitleIf anyone needs it, I also have the CSS code for aligning the logo AND text title in the center of the header:
/* --- Begin site branding center alignment --- */ .site-branding { float: none; display: flex; align-items: center; justify-content: center; } .site-title-wrapper { margin: 0px; padding: 0; } .site-title { position: relative!important; top: auto!important; left: auto!important; right: auto!important; line-height: 110px!important; font-size: 110px!important; } .site-title img { line-height: 110px; } @media ( max-width: 767.98px ) { .site-branding img { max-height: 60px; } .site-title { font-size: 33px!important; } } /* --- End site branding center alignment --- */I misunderstood the question and thought it was about centering the entire site branding, rather than just the text. 🙂
Forum: Fixing WordPress
In reply to: Site TitleYou’re welcome, @jxnxthxn! Glad it works!
