yont5983
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress site redirectI re-uploaded the index.php file from www.ads-software.com and this is the message I received.
Warning: require(/home/psorg/public_html/wp-blog-header.php): failed to open stream: No such file or directory in /home/psorg/public_html/index.php on line 17 Fatal error: require(): Failed opening required ‘/home/psorg/public_html/wp-blog-header.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/psorg/public_html/index.php on line 17Thank you for your help as well as your valuable time and patience.
Forum: Fixing WordPress
In reply to: WordPress site redirectI do not have access to the database. I might have changed the site url within the general settings on the WordPress dashboard. Just in case the site url change did not go through how can I change it through the ftp? Thank you for your time and patience.
Forum: Networking WordPress
In reply to: install new WordPress test site within subfolderI do not use mysql for my database I use cpanel with my host provider.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Upcoming events widgets problemTo whom it may concern,
I am having a problem with the Upcoming Events widget in the main_sidebar for the My Calendar upcoming events widget. Certain scheduled events such as the Green Committee Meeting events no longer have a link to the calendar event and the scheduled events seem to repeat themselves within the upcoming events widget in all caps for the text. Events like the green committee meeting events. For instance the scheduled event for the green committee on January 20, 2015 – Green Committee Meeting 7:00 pm, Green is repeated but for the scheduled event it is in all caps for the same date. Here is the issue with the upcoming events widget on the main sidebar towards the right side of the home page:
silverlakenc.orgForum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Event LinksTo whom it may concern,
The problem has been solved. Thank you for your help as well as your valuable time and patience.Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Event LinksTo whom it may concern,
Thank you for your help. The default link on the pop-up window for calendar events is still added automatically. I would like to remove that link and the function every time I add or edit recurring events. Here is an example of the link that I am talking about and where it goes:
https://silverlakenc.org/events/
FRIENDS OF SILVER LAKE ANIMALS COMMITTEE MEETING & OFFICER ELECTIONS
https://silverlakenc.org/calendar/?mc_id=1481Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Event LinksTo whom it may concern,
I am having the same problem as well. I would like to know how to remove the link that goes to the non-existent page. When I add a new event and edit a recurring event 2 links are automatically added to the pop-up window for the event. One link goes to the event post and the other goes to a non-existent page. The dead link used to go to another page that contained an alternate google calendar. I removed the page that contained the google calendar. I would like to remove the dead link from the pop-up window for the events. Here is a link to my problem:
https://silverlakenc.org/events/
https://silverlakenc.org/calendar/?mc_id=1281Forum: Fixing WordPress
In reply to: nav menu and header remains scrolling down siteTo whom it may concern,
I think the issue lies in header.php. I just need to know if I am looking in the right direction. It seems like the only difference is that the 2014 theme has the nav bar in ul lists.Forum: Fixing WordPress
In reply to: nav menu and header remains scrolling down siteHow would you like me to display the code? Should I just keep sending the link reneenahum.com or just a small section of the html? Please let me know so I get some help with my problem.
Forum: Fixing WordPress
In reply to: nav menu and header remains scrolling down siteThe previous code is for the child theme header.php not the main theme header.php
Forum: Fixing WordPress
In reply to: nav menu and header remains scrolling down siteI believe the nav menu is within the <header> section. In the header.php file.
Here is the code for the header.php document:<header id=”site-header” class=”group” role=”banner”>
<?php
// Get header image:
$header_image = get_header_image();
// Get text colour (or lack thereof):
$text_color = get_header_textcolor();
?><?php
// Has the text been hidden?
if ( ‘blank’ == $text_color ) { echo ‘<div id=”header_image_margin”>’; }
else { echo ‘<div id=”header_margin”>’; }
?>
<div class=”header-container group”><hgroup id=”header-title” <?php /* if ( $header_image ) { echo ‘class=”header-image-true”‘; } */ ?>>
<h1 id=”site-title”>” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?></h1>
<h2 id=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
</hgroup></div><!– .header-container –>
</div><!– #header_margin or #header_image_margin –><?php
// Check to see if there is a custom header imageif ( $header_image) :
echo ‘<div id=”header_image”>’;// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( ‘get_custom_header’ ) ) {
// We need to figure out what the minimum width should be for our featured image.
// This result would be the suggested width if the theme were to implement flexible widths.
$header_image_width = get_theme_support( ‘custom-header’, ‘width’ );
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
}
?>
” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>”>
<?php
// The header image
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( ‘get_custom_header’ ) ) {
$header_image_width = get_custom_header()->width;
$header_image_height = get_custom_header()->height;
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
$header_image_height = HEADER_IMAGE_HEIGHT;
}
?><img src=”<?php header_image(); ?>” width=”<?php echo $header_image_width; ?>” height=”<?php echo $header_image_height; ?>” alt=”” />
<nav id=”sub-access” class=”group” role=”navigation”>
<h1 class=”assistive-text section-heading”><?php _e( ‘Main menu’, ‘anaximander’ ); ?></h1>
<div class=”skip-link screen-reader-text”>“><?php _e( ‘Skip to content’, ‘anaximander’ ); ?></div><?php
wp_nav_menu( array( ‘theme_location’ => ‘header_menu’, ‘menu_class’ => ‘nav-menu’ ) );
?></div>
<?php endif; // end check for removed heaForum: Fixing WordPress
In reply to: nav menu and header remains scrolling down siteI have tried position: fixed; and top: 0; What 2014 does is it allows the posts or page information to scroll into or under the main nav menu and the main nav menu remains in the same position while the visitor scrolls up and down. Is there something I would need to change with the header.php and style.css in the child theme? Thank you very much for your help. Here is the website again: reneenahum If any more information is needed please do not hesitate to ask.