Webdesigner51
Forum Replies Created
-
Is there really no one that can help?
Forum: Fixing WordPress
In reply to: I think my Q2W3 Fixed Widget plugin is buggy Help meI just turned the “Use jQuery(window).load() hook:” on, and it still won’t work correctly, hope i can get some help..
Hi i’m still having this problem.
Can you please tell me what you did in your CSS?
Would really appreciate.Best regards
However, during installation of the Master Slider, the default images of the plugin failed to upload, and now when I try to create a new slider no sample images can be seen. Same thing happened on a second install attempt.
I also can’t figure out how to add NEW images from my own media to a new slider.
Nothing shows up! Am I doing something wrong?
I have even deactivated all my current plugins to avoid any conflicts, but still nothing shows up!!Hi Kiumars and others having issues with this.
Here is the link to the Plugin’s support forum, like you guys having problems with this plugin. I saw a few topics in there, and the solution must hide in there somewhere.
https://wordpress.org/support/plugin/master-sliderBest regards
Forum: Fixing WordPress
In reply to: Slow Page IssuesHi Synfidie.
Couldn’t the issue be at your webhosting service maybe?
Your website loads ok fast at my PC.
Maybe it could also be your internet connection?But if u got time, it would be a good idea checking if it’s the internet connection that is the issue, or something else.
-Webdesigner51
Forum: Fixing WordPress
In reply to: I think my Q2W3 Fixed Widget plugin is buggy Help meYes i tried it. But it didn’t work 🙁
Forum: Fixing WordPress
In reply to: Change footer text to center of footerOpps. Solved.
Forum: Fixing WordPress
In reply to: Change footer text to center of footerThanks alololololot my friend. Really appreciated. Thanks so much, wish you the best day 🙂
Forum: Fixing WordPress
In reply to: Change footer text to center of footerDid it, done. Now the code seems a lot “cleaner” and easier to edit if i can say it in that way. Now all the text, that i don’t needed before is away. Now i’m just gonna put the text in the center. 🙂
Forum: Fixing WordPress
In reply to: Change footer text to center of footerOkay here the original code is without any edits.
The css u told me to make, is still there and haven’t been deleted.
But here is my whole Footer.php code the original one. 🙂<?php if( is_front_page() || is_page_template( 'template-landing-page.php' ) || ( is_home() && ! is_paged() ) ) : ?> <?php get_sidebar( 'footer-wide' ); ?> <?php endif; ?> <div id="footer"> <?php get_sidebar( 'footer' ); ?> <div id="copyright"> <p class="copyright twocol"><?php pinboard_copyright_notice(); ?></p> <?php if( pinboard_get_option( 'theme_credit_link' ) || pinboard_get_option( 'author_credit_link' ) || pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <p class="credits twocol"> <?php $theme_credit_link = '<a href="' . esc_url( 'http://www.onedesigns.com/themes/pinboard' ) . '" title="' . esc_attr( __( 'Pinboard Theme', 'pinboard' ) ) . '">' . __( 'Pinboard Theme', 'pinboard' ) . '</a>'; ?> <?php $author_credit_link = '<a href="' . esc_url( 'http://www.onedesigns.com/' ) . '" title="' . esc_attr( __( 'One Designs', 'pinboard' ) ) . '">' . __( 'One Designs', 'pinboard' ) . '</a>'; ?> <?php $wordpress_credit_link = '<a href="' . esc_url( 'http://wordpress.org/' ) . '" title="' . esc_attr( __( 'WordPress', 'pinboard' ) ) . '">' . __( 'WordPress', 'pinboard' ) . '</a>';; ?> <?php if( pinboard_get_option( 'theme_credit_link' ) && pinboard_get_option( 'author_credit_link' ) && pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <?php echo sprintf( __( 'Powered by %1$s by %2$s and %3$s', 'pinboard' ), $theme_credit_link, $author_credit_link, $wordpress_credit_link ); ?> <?php elseif( pinboard_get_option( 'theme_credit_link' ) && pinboard_get_option( 'author_credit_link' ) && ! pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <?php echo sprintf( __( 'Powered by %1$s by %2$s', 'pinboard' ), $theme_credit_link, $author_credit_link ); ?> <?php elseif( pinboard_get_option( 'theme_credit_link' ) && ! pinboard_get_option( 'author_credit_link' ) && pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <?php echo sprintf( __( 'Powered by %1$s and %2$s', 'pinboard' ), $theme_credit_link, $wordpress_credit_link ); ?> <?php elseif( ! pinboard_get_option( 'theme_credit_link' ) && pinboard_get_option( 'author_credit_link' ) && pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <?php echo sprintf( __( 'Powered by %1$s and %2$s', 'pinboard' ), $author_credit_link, $wordpress_credit_link ); ?> <?php elseif( pinboard_get_option( 'theme_credit_link' ) && ! pinboard_get_option( 'author_credit_link' ) && ! pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <?php echo sprintf( __( 'Powered by %1$s', 'pinboard' ), $theme_credit_link ); ?> <?php elseif( ! pinboard_get_option( 'theme_credit_link' ) && pinboard_get_option( 'author_credit_link' ) && ! pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <?php echo sprintf( __( 'Powered by %1$s', 'pinboard' ), $author_credit_link ); ?> <?php elseif( ! pinboard_get_option( 'theme_credit_link' ) && ! pinboard_get_option( 'author_credit_link' ) && pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <?php echo sprintf( __( 'Powered by %1$s', 'pinboard' ), $wordpress_credit_link ); ?> <?php endif; ?> </p> <?php endif; ?> <div class="clear"></div> </div><!-- #copyright --> </div><!-- #footer --> </div><!-- #wrapper --> <?php wp_footer(); ?> </body> </html>Forum: Fixing WordPress
In reply to: Change footer text to center of footerI’m not quite with you, and didn’t understand something of it sorry.
I tried paste the code right there where the previous code was, that u told me to delete.
But still giving me error, it may be because i did something wrong, but i don’t know whatForum: Fixing WordPress
In reply to: Change footer text to center of footerHow to remove the columns? Just add your code, at the very bottom and remove existing “/body” and “/html”?:
<?php if( is_front_page() || is_page_template( 'template-landing-page.php' ) || ( is_home() && ! is_paged() ) ) : ?> <?php get_sidebar( 'footer-wide' ); ?> <?php endif; ?> <div id="footer"> <?php get_sidebar( 'footer' ); ?> <div id="copyright"> <p class="copyright"><?php pinboard_copyright_notice(); ?></p> <div class="clear"></div> </div><!-- #copyright --> </div><!-- #footer --> </div><!-- #wrapper --> <?php wp_footer(); ?> </body> </html>Forum: Fixing WordPress
In reply to: Change footer text to center of footerI removed following in the footer.php:
<p class="copyright twocol"><?php pinboard_copyright_notice(); ?></p> <?php if( pinboard_get_option( 'theme_credit_link' ) || pinboard_get_option( 'author_credit_link' ) || pinboard_get_option( 'wordpress_credit_link' ) ) : ?> <p class="credits twocol">Forum: Fixing WordPress
In reply to: Change footer text to center of footerI removed the whole p tag text in the footer.php
then i made your next update, in CSS file at the very bottom but, it gave me a error. If you want you can go into my site again and check the error. I don’t know why it occured.
No worry about backup, cause i did that. 🙂Forum: Fixing WordPress
In reply to: Change footer text to center of footerI tried the two options.
first option: Didn’t change anything.
2nd option: you can see it at the ref link;
It made a difference but not as wished. Only a half way.[some bumps moderated]