juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to find specific html code and removeYou must have been using th eplugin at some point. As th eplugin is a premium plugin you might want to ask the plugin’s author about this.
That said, I’d probably eport my database and then do a test search for ‘flippingbook’ and also do a complete search of my wp-content folder for files that contain the term to gather information.
Once I got the results I would hope that ithey would lead me to a solution.
Forum: Fixing WordPress
In reply to: Sruggling with HyperlinksLet me be sure I understand.
1) you are logged in with an ID that has ‘admin’ authority…correct?
2) you are in teh wordpredd page editor…correct?
3) the page is a child of another page – on the right of the edit area, there is a column labeled ‘Page Attributes’ and the Parent is specified….correct?
4) you are using the visual editor (top of the edit area on the right side you will see two tabs ‘Visual’ and ‘Text’ and you have clicked the ‘Visual’ taby…correct?Forum: Fixing WordPress
In reply to: Sruggling with Hyperlinksthen you just get the url of the other website and when you click the link icon, paste that url in.
Forum: Fixing WordPress
In reply to: Sruggling with Hyperlinksif you have page ‘parent’ and page ‘child’ and you want to add a link in ‘child’ that points to parent, whle editing the child page using the ‘visual’ editor, click the LINK icon. To the right of the popup you will see a gear icon, click it and a drop down will show you all your pages. Scroll to the parent page and seledt it.
Done, you have a link in the child back to the parent.
Forum: Fixing WordPress
In reply to: simple issue with WooCommerce and site wide notice, please helpSince that is a commercial theme, we ask that you please go to their official support channel, so you can get support from the people who know it best.
https://themeforest.net/item/rosa-an-exquisite-restaurant-wordpress-theme/7920093/support
Forum volunteers are also not given access to commercial products, so they would not know why it is not working properly. Other community members who may have faced your issue might be able to help you but your best bet is your product’s developer. Keep in mind we encourage you to use the official support venues, as it allows the developers to be aware of issues with their code and gives back to the community in a more robust way.
Forum: Fixing WordPress
In reply to: Getting [W007] when trying to upload csv filesounds like win110 might save teh file tye different – I’d contack the plugin developer and tell them this new info.
Forum: Fixing WordPress
In reply to: Batch functions for Posts, Pages and Plugins goneas far back as 3.4.2 (an old local site I have) there was no ‘Trash’ in the bulk action for plugins. All the actions (Activate, Deactivate, Update and Delete) exist exactly as they do in 4.6
For Posts in 3.4.2 there was ‘Edit’ and ‘Move to Trash’ both of which are in 4.6
For Pages in 3.4.2 there was ‘Edit’ and ‘Move to Trash’ both of which are in 4.6can you provide the url that points to an example?
Looking at the blog page quickly, I see no issues.also, it seems that you are using a premimum theme. You should ask the author of the theme about this issue.
Forum: Fixing WordPress
In reply to: Getting [W007] when trying to upload csv filewhat is the plugin?
Forum: Fixing WordPress
In reply to: Add Search Form as Menu Item and add drop-down.search-dropdown { position:relative; width:100%; display:none; height:68px; background:#fff; border:none } .search-dropdown form { border:none } .search-dropdown input#s { border:none!important; height:68px; line-height:68px; width:100%; padding-right:10%; font-family:bodoni,serif!important; font-size:30px!important; color:#999!important; -webkit-font-smoothing:antialiased!important } .search-dropdown button { position:absolute; top:20px; right:20px }try this
Forum: Fixing WordPress
In reply to: Add Search Form as Menu Item and add drop-downoh and don’t forget, you need some CSS to hide the area before you display it
Forum: Fixing WordPress
In reply to: Add Search Form as Menu Item and add drop-downUncaught ReferenceError: searchDisplay is not defined
This means you have not defined the function in a script yet, you need to wrapt it in a
<script type="text/javascript">...</script>Forum: Fixing WordPress
In reply to: Add Search Form as Menu Item and add drop-downAnd you have to have the search area derined as
<div class="search-dropdown"> <form method="get" id="searchform" action="http://yourdomain.com"> <input type="text" class="field" name="s" id="s" placeholder="What are you looking for?" /> <button type="submit" class="submit" name="submit" id="searchsubmit"> <i class="icon-search"></i> </button> </form> </div>Forum: Fixing WordPress
In reply to: Add Search Form as Menu Item and add drop-downYou also need to add
<script> <!-- searchDisplay(); //--> </script>just befor the </body> to trigger the function.
Forum: Fixing WordPress
In reply to: Add Search Form as Menu Item and add drop-downThat code is script, not PHP it needs to go in a xxxx.js file.
What is your url?