loco2402
Forum Replies Created
-
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] PayPal gatewayNot sure if you figured it out yest, but read this:
https://www.ads-software.com/support/topic/paypal-cant-log-in-to-paypal-to-make-a-donation/Forum: Plugins
In reply to: [WP Church Center] WP Center still being developed? I have some questonsThanks, Greg. Will try the CSS.
And, yes, I know about GD lol. I have done quite a bit of research and found an alternative host that offers the free SSL certificate, just have to put some time aside to get the site moved. Day job, family and other obligations always scream louder. : )
I appreciate your help on this. I think the devs need to give you a support fee.
Forum: Plugins
In reply to: [WP Church Center] WP Center still being developed? I have some questonsThanks, Greg. Will try to get it from there.
yes, the icons show on the desktop browser, but not on my mobile browser.
An SSL cert from GoDaddy is a bit out of our budget as a church. I tried to use CloudFlare but could not get it to work at first. Plan to go back to retry that.
Forum: Plugins
In reply to: [WP Church Center] WP Center still being developed? I have some questonsHi Greg,
Thanks for the reply. I would not know where to begin to get the updates off one of the repos (and admittedly do not know what a “repo” is).Here is the URL: https://www.faithbaptistjax.com/next-steps/
Thanks in advance for the help!
Forum: Fixing WordPress
In reply to: URLs have extra wordsSweet. Didn’t think it would be that simple. I appreciate that tip. Best to you!
Forum: Plugins
In reply to: [The Events Calendar] Modifying the Google Map size (width)Hi Caroline,
Thanks for the reply. That worked, though I changed the widths to 25% and 50% respectively as that makes the map even larger, and fills up some more of the empty space.
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showing on individual eventsNew topic so will start a new thread if I don’t find my answer elsewhere.
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showing on individual eventsOk, now that I have it working, is there a way to make the map wider. There is quite a bit of white space in the box, and a wider map would be helpful, esp when zoomed in.
Let me know if I should start a new thread for this.
Thanks!
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showing on individual eventsThat worked. Thanks, Brian!
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showing on individual eventswhere would I do that?
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showing on individual eventsSorry for the late response.
Here is a link to a page:
https://www.datheatreboosters.org/event/fake-event-3/In looking at wilhud’s response, I am unsure if I created a server or browser key. Will look into that and report back.
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showing on individual eventsDid all that the article suggests to no avail. Maps still don’t show with the Twenty Sixteen them and all other plug ins turned off.
What’s the next step?
Forum: Themes and Templates
In reply to: [Pinnacle] Submenu too far below main navigationThank you!
Forum: Fixing WordPress
In reply to: listing post titles and links on home pageI found the solution, and frankly didn’t think it would be this easy. I have looked at the page esmi referenced numerous time, but in my inexperience, never thought to try the code samples at this location on that page. It does exactly what I have been looking for for over a week. : P
I put
<?php require('/the/path/to/your/wp-blog-header.php'); ?>
at the top of my home page, and
<?php query_posts('showposts=3'); ?> <?php while (have_posts()) : the_post(); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><br /> <?php endwhile;?>
in the DIV I wanted it to show up. And it worked.
Forum: Fixing WordPress
In reply to: listing post titles and links on home pageI have not, as my home page is the root index.html, outside the WP directory and static (but easily converted to PHP). I am unsure what code I need to add to this page to just pull the last 2 – 3 post titles.