RobJonze
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Font type not displaying on mobile deviceThanks for the link. Quick question; why does that font work with desktop browsing (firefox) but not mobile browsing (safari)?
Forum: Fixing WordPress
In reply to: Font type not displaying on mobile deviceThanks for the reply, very much appreciated. I think it’s the typekit / webfont kit problem that you mentioned. How would I go about fixing it? (Sorry, I’m a bit green when it comes to this!!)
Forum: Fixing WordPress
In reply to: 'Show Toolbar when viewing site' Option Not AvailableHey gnite,
On your admin page, click on the “Mystile” option from the left-hand menu. (Below “Comments” and above “Appearance”)
Then choose the “Framework Settings” option. Then, in the main body of the page, you should see a “WordPress Toolbar” option with a checkbox that says “Enable the WooFramework Toolbar enhancements”.
Done. ??
Forum: Fixing WordPress
In reply to: How to add a "Calculate Shipping" option to a delivery pageYeah, multiple countries for each zone. I was in the process of writing out the list of countries. But hit on the idea of having a dropdown menu to save the user having to scroll through a long list to find the delivery price. I thought it would look neater on the page to have something like this instead.
Forum: Fixing WordPress
In reply to: How to add a "Calculate Shipping" option to a delivery pageIt’s set up for delivery by country rather than zip codes, as I’m based in Singapore not America. I used s plugin called AWD Weight/Country Shipping to assign prices to 6 different international zones. It all works perfectly when calculating delivery on both the cart and checkout page, but, as you say, woocommerce calculates delivery based on input so I cant copy & paste the code to another page.
All I really need is to insert a dropdown menu of countries and a display of the price when a country is selected. Any ideas how I could go about this?
Forum: Fixing WordPress
In reply to: How to add a "Calculate Shipping" option to a delivery pageHi webbrewers,
Thanks for clarifying. I have 6 different delivery ‘zones’ and the value is fixed for each zone (ie doesn’t vary with quantity).
Could you point me in the right direction of how to make my own drop-down selector, containing all the countries I ship to, that displays the delivery price when selected? (ie how to make my own one of these ) I am happy to manually enter all this info, I just don’t really know how to do it!
PS – Apologies for my confusion regarding the forum rules.
Forum: Fixing WordPress
In reply to: How do I display "Welcome, (Username)" for logged in users?Ok, so I think I might be getting somewhere. Kinda.
I entered the following code in my functions.php:add_filter( 'wp_nav_menu_items', 'my_custom_menu_item'); function my_custom_menu_item($items) { if(is_user_logged_in()) { $user=wp_get_current_user(); $name=$user->display_name; // or user_login , user_firstname, user_lastname $items .= '<li style="padding: 1.37em 1em; font-family: bree serif; color: rgb(159, 150, 147);">Welcome, '.$name.''; } return $items; }
which does indeed display “Welcome, User”. However, it displays on both my top menu and my main nav menu.
What would I need to change to get it to display only on the top menu?
Thanks in advance.
Forum: Fixing WordPress
In reply to: How can I disable the link to a parent menu item?Fathi,
I now realise that Virendra’s solution was what you were pointing me towards. My apologies for not grasping it, and wasting everyone’s time!
Forum: Fixing WordPress
In reply to: How can I disable the link to a parent menu item?Hi Virendra,
Thank you so much!! It was so simple, and I feel ever-so-slightly foolish for not figuring this out myself!
??
Solved it. In case anyone is interested, I added this…
…to the /single-product/add-to-cart/simple.php (after adding it to /mytheme/woocommerce….) and then floated the element to the right with a 10px padding. Done.
Forum: Fixing WordPress
In reply to: How to add a "Calculate Shipping" option to a delivery pageHi webbrewers,
Thanks for your reply. I want to display that (or something similar) on a “Delivery Information” page I have created, if possible?
Forum: Fixing WordPress
In reply to: How to add a "Calculate Shipping" option to a delivery pageWow – that’s an interesting reply. I have no idea what most of it means! Are you asking me, in a round-about way, not to post questions here because my site uses the mystile theme?
I was trying to ask if anyone knew of a simple bit of code or a plugin that shows this Image on a specific page so the user can enter their location and get the relevant shipping costs without having to go through checkout. I didn’t realise it was a) theme specific or b) was related to PHP5.4.
My apologies if I asked for help on this matter in the wrong place. I am very new to all this and was looking to get some advice on a few topics from people with superior knowledge.
Forum: Fixing WordPress
In reply to: How can I disable the link to a parent menu item?Many thanks for the reply.
I would like to keep the ‘Artists’ as the menu heading, but not have it linking to a page itself. The only ‘clickable’ links should be in the dropdown list (in this case ‘Jamie Paul’ and ‘Lynyrd Paras’).
Any help would be much appreciated. It seems like it should be easy, but I can’t figure it out!!
Thanks for the reply. I couldn’t find an option for this on the product page or theme settings. It should be that simple, as it seems obvious to me that a “return to shop” button is needed on the single product page, but it doesn’t seem to be!
Forum: Fixing WordPress
In reply to: How do I display "Welcome, (Username)" for logged in users?Hey Keith,
Thanks for the response mate, much appreciated.
Could you tell me how I go about changing the top menus depending on whether a user was logged in or not?