shanfriz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: warning messages on blank page upon publish/updateThank you, just tried replacing the file with one from a fresh wordpress download and still no change.
Forum: Plugins
In reply to: [WP eCommerce] Not Redirecting to PayPal on MobileOh my oh my, I just figured out the issue. The “same as billing” button is not working, so none of the shipping fields were populating, and I couldn’t see the error messages because the I had the button clicked and it was hidden! It probably worked on my desktop originally because I was logged in and all my info was saved in the browser. I guess I should start a new topic about the button…
Forum: Plugins
In reply to: [WP eCommerce] Not Redirecting to PayPal on MobileIs anyone able to help, please!!!! It’s now not working on desktop either! I just updated wordpress to the most current version, 4.9.2, and it didn’t fix it. I don’t know what else to do or why in the world it just stopped working when nothing changed on the site, please help me!!!
Forum: Themes and Templates
In reply to: can't find CSS not on main style sheetHi, sorry it took me so long to reply! I didn’t have much time to throw at this before (thought it would be a 2 second fix) and had to jump on other projects. I have a breathing room now, so I’m back on it.
.div.producttext {
margin-left:0;
}does not work. It’s because there is an !important in the code I’m trying to change. Nothing will override it and I still can’t find it.
Forum: Themes and Templates
In reply to: can't find CSS not on main style sheetI should also note I did try to add in:
div.default_product_display div.textcol div.imagecol {
margin-left: 0px !important;
}div.single_product_display div.textcol {
margin-left: 0px !important;
}to bottom of style.css and nothing changes. I think it’s because of the !important already in the code I want changed.
Forum: Themes and Templates
In reply to: can't find CSS not on main style sheetThanks, however, I looked there and the css I’m trying to find isn’t in default.css either!
I’m trying to find these 2 lines:
div.default_product_display div.textcol div.imagecol {
left: 0;
margin-left: -210px !important;
position: absolute;
top: 0;
}div.single_product_display div.textcol {
margin-left: 210px !important;
min-height: 300px;
}and change to margin-left: 0 on both.
Forum: Plugins
In reply to: [WP eCommerce] Admin and Purchase Receipt emails not workingOk, so I just realized that in the “Purchase Receipt – Reply Address” it says: Jojoco Hatmakers
for some reason, the actual from address is then this:
Jojoco Hatmakers <“Jojoco Hatmakers”@brianhallinc.com>I had it backwards before. Why is the @brianhallinc being added?
Forum: Plugins
In reply to: [WP eCommerce] Admin and Purchase Receipt emails not workingSo, after talking to my host, I got everything un-blacklisted, so the emails are working again. If anyone thinks they may have been hacked and might be blacklisted, go to http://mxtoolbox.com to check.
Now, for my second issue, I would really like to figure out how the from address is being generated? I really don’t like people seeing “[email protected]” when brianhallinc has nothing to do with jojocohatmakers.com, other than that we manage the site. Any insight?
thanks
Forum: Fixing WordPress
In reply to: add posts to a page where the tag = current page slugI will look into this plugin, thanks!
Forum: Fixing WordPress
In reply to: add posts to a page where the tag = current page slugSo you don’t think in every case in this situation that there will be a ‘-2’ added to the tag when it will always be the same as an existing page slug? Why does a ‘-2’ get added anyway in this theme (or is it the new wordpress)?
I’m not against trying a custom field, but I’ve never implemented one myself. I have been wanting to learn though. As long as this is a solution where my client will be able to easily assign certain posts to new pages they create in the future.
Forum: Fixing WordPress
In reply to: add posts to a page where the tag = current page slugYou are so smart! It doesn’t work with just the slug, so I added a ‘-2’ to the $pagetitle. Works perfectly, thank You!
New code is as follows, hopefully someone else can find it useful:
<?php global $pagetitle; $pagetitle = basename(get_permalink()) . '-2'; $args = array( 'post_type' => 'brands', 'tag' => $pagetitle ); $query = new WP_Query( $args ); while ($query->have_posts()) : $query->the_post(); echo '<h2>' . get_the_title() . '</h2>'; ?> <?php the_content(); endwhile; ?>Forum: Fixing WordPress
In reply to: add posts to a page where the tag = current page slugThanks for taking a look! I’m guessing it’s an issue with the theme, I’ve never started with this one before (lensa). Any ideas on what could be causing the conflict?
thanks!