Tanveer Sure
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: add more pages to an existing pageHi, based on my understanding of your question, do you think adding links to other pages at the bottom of your existing page is something that might work for you? I think it will be easy to navigate between pages once you have added the link at to the page.
Please correct me if I have misunderstood the question and I will try and assist you further.
Forum: Fixing WordPress
In reply to: How to execute php from button clickDo you have access to the class or id of the max button you are trying to hook up with the php script using AJAX?
One way of getting the id or class could be via Google’s dev tools by right clicking the button in chrome and selecting “Inspect”.
More information on dev tools can be found here: https://developer.chrome.com/devtools
If yes, then the link below may be useful. It shows you how to implement an ajax call given a class of a button.
https://wordpress.stackexchange.com/questions/24235/how-can-i-run-ajax-on-a-button-click-eventNot sure if you’ve already seen this Codex page : https://codex.www.ads-software.com/AJAX_in_Plugins
Let me know how it works out.
Forum: Fixing WordPress
In reply to: alt image don't show in source codeHi Max,
So if I understand correctly, you are having alt text set in your image details section via admin section. The alt text should show if your image doesn’t load. Does it show ?
Also out of cautiously what are you exactly trying to do ? May be that may clear a few more things here.
Thanks.
Forum: Fixing WordPress
In reply to: How to show high quality images in post?There can be numerous reasons why that might be happening. I am not sure if you have already read this but its worth it in your case:
https://codex.www.ads-software.com/Image_Size_and_Quality
https://www.sitepoint.com/gif-jpg-png-whats-difference/
As mentioned here, I would first try see if the image is getting compressed and if changing the format helps.
Let me know how that works out for you.
Forum: Fixing WordPress
In reply to: Attibute box is not lit up on my home pageOh, I am sorry to hear that. Lets see what we can do here. Have you looked into the “.badge” or the “.label” class? Were you able to change it successfully via the Debugger console?
If you are not so familiar using the dev tools here is a quick introduction to it:
https://developer.chrome.com/devtools
We will take it step by step. Let me know if you could successfully change it via Google chrome’s dev tools for the first step.
Then we will proceed to the next step.
Forum: Fixing WordPress
In reply to: Syntax for AJAX (json format)Just wanted to check if your question has been answered. We would love if it if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did.
Forum: Fixing WordPress
In reply to: Image Hover – Can't get it to workIf your question has been answered, we would love if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did.
Forum: Fixing WordPress
In reply to: Attibute box is not lit up on my home pageHi,
Did the suggestion above work? If yes, we would love if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did.Forum: Fixing WordPress
In reply to: 406 Not Acceptable — STYLE.CSS UpdateWere you able to get this resolved?
If your question has been answered, we would love if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did.
Forum: Fixing WordPress
In reply to: Redirecting to SubdirectoryHave you already searched for this topic in the help search section of this forum? Here is another issue similar to what you are facing that has some good suggestions. I would start by trying out some suggestions mentioned here:
https://www.ads-software.com/support/topic/admin-bar-missing-2?replies=11
If none of the suggestions work here, please let me know and I will help you investigate further.
Forum: Fixing WordPress
In reply to: Syntax for AJAX (json format)Hi jetfighter,
I am going to try to help you out here but providing exact syntax in Ajax would be difficult as there is no server setup (like yours) at my end that can help me replicate and code at my end. However, lets see what we can do here.
Are you aware of debugging using dev tool either in firefox or chrome? I use chrome so what I would do in your case is add a break point on the line:
$(“#form-submit”).show()
Then in the console window I would look at what the variable “jsonFile” contains. If you are not aware how to do this have a look at this:
https://www.html5rocks.com/en/tutorials/developertools/async-call-stack/Now if the jsonFile.hashid contains the expected value we are half way there. Next what I would do is a sanity check to make sure the API you are calling works fine. This would tell us wether the problem is in your code or the API. The documentation of wistia.com should tell you wether you should use POST or PUT. Do you have a reference to their developers documentation? Have you checked in there?
Next if it is POST or PUT try externally using a chrome plugin like POSTMAN and see if it works from there. If it works from there then you it should also work from your code. Then you can decide wether to go for $.put() or $.post().
Let me know how this works out.
Forum: Fixing WordPress
In reply to: Incorrect 404Hi Gulliver,
Referring to the link mentioned here: https://codex.www.ads-software.com/Creating_an_Error_404_Page which you must have already read, is your WordPress installed in a directory called test/1 ?
Also, if you could lay out your directory structure that would be very helpful.
Thanks,
TanveerForum: Localhost Installs
In reply to: WAMP – server DNS address could not be foundSorry for the inconvenience Paul. Just trying to help but do let me know if the video helped. If not, i’ll try and figure out another solution.
Thanks, trying to do my best to help you out.
Forum: Localhost Installs
In reply to: WAMP – server DNS address could not be foundHi Paul,
I am not sure I understand your question correctly, but can you type in the URL you are hitting in the browser window here?
Shouldn’t it look something like: https://localhost/project ?
Also, have you looked at this tutorial below ? It may be helpful in your case since the video shows some changes made in the config files of the WAMP server :
https://www.youtube.com/watch?v=u5qkfXB2c3I
Do let me know how this works out ??
Forum: Fixing WordPress
In reply to: 406 Not Acceptable — STYLE.CSS UpdateYes, you would need to start a server(like WAMP) on your pc .
What’s the result? Did you figure it out?